gpt4 book ai didi

iphone - 使用 UIAlertView 检测按钮点击

转载 作者:行者123 更新时间:2023-12-03 18:18:03 24 4
gpt4 key购买 nike

我正在尝试在按下按钮时调用电话并发出警报。我用这个:

-(IBAction)Add { 
UIAlertView *alert = [[UIAlertView alloc] initWithTitle: @"add button pressed"
message:@"Add to record"
delegate:nil
cancelButtonTitle:@"Cancel"
otherButtonTitles:@"OK", nil ];
[alert show];
[alert release];
}

好的,没问题,出现了两个按钮,确定和取消。现在我想检测我使用的是哪个按钮:

- (void)alertView:(UIAlertView *)alertView clickedButtonAtIndex:(NSInteger)buttonIndex {
// the user clicked one of the OK/Cancel buttons
if (buttonIndex == 0)
{
//just to show its working, i call another alert view
UIAlertView *alert = [[UIAlertView alloc] initWithTitle: @"OK WORKIng well"
message:@"no error" delegate:nil
cancelButtonTitle:@"IWORKS"
otherButtonTitles:@"NO PRB", nil];
[alert show];
[alert release];


}
else
{
NSLog(@"cancel");
}
}

现在问题来了。我无法检测到按下了哪个按钮;第二个警报 View 不显示。我已经检查了代码几次,似乎没有任何问题。也没有错误/警告。

最佳答案

要检测按钮点击,警报 View 必须有一个关联的委托(delegate),例如

UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"add button pressed"
message:@"Add to record"
delegate:self // <------
cancelButtonTitle:@"Cancel"
otherButtonTitles:@"OK", nil];

关于iphone - 使用 UIAlertView 检测按钮点击,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3491724/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com