0

我正在使用 AlertView 和 xcode,xcode 显示消息:未声明的标识符 alertLabel ...

这是代码:

-(void)alertView:(UIAlertView *) alerta didDismissWithButtonIndex:(NSInteger)buttonIndex

switch (buttonIndex) {
    case 0:
        alertLabel.text = @"Ok!";
        break;

    default:
        break;
}

有人可以帮我吗?

4

5 回答 5

3

该错误意味着没有警报标签之类的东西,因此请确保正确声明它。

于 2012-07-13T13:06:29.323 回答
2

在 iOS 中使用警报视图

UIAlertView *alert=[[UIAlertView alloc]initWithTitle:nil message:@" Running apps in the background " delegate:self cancelButtonTitle:@"Okay" otherButtonTitles:nil, nil];
    [alert show];
于 2015-09-05T11:57:33.823 回答
1

您可能没有正确定义 AlertLabel,请检查它是否已正确初始化

于 2015-08-19T19:21:00.503 回答
0

如果警报是另一个视图控制器中的标签,它是警报视图的代表,请尝试此更改

self.delegate.alertLabel.text
于 2012-07-13T13:06:23.503 回答
0

你有你的 alertLabel 的 @property 和 @synthesize 吗?

于 2012-07-13T13:22:56.053 回答