gpt4 book ai didi

ios - 无法检测到 UIAlertView 关闭

转载 作者:行者123 更新时间:2023-11-28 20:37:15 24 4
gpt4 key购买 nike

我有一个带有 UIAlertView 的应用。

当这个 alertView 关闭时,我想实现一些代码。但我做不到。

我连接 UIAlertViewDelegate 并编写此方法:

-(void)alertView:(UIAlertView *)alertView didDismissWithButtonIndex:(NSInteger)buttonIndex{
NSLog(@"%i",buttonIndex);
}

- (void)alertView:(UIAlertView *)alertView clickedButtonAtIndex:(NSInteger)buttonIndex
{
NSLog(@"%i",buttonIndex);
}

-(void)alertViewCancel:(UIAlertView *)alertView{
NSLog(@"cancel alert view");
}

但没有输入任何输出。为什么?谢谢。

与 UIAlertViewDelegate 的 UPD 连接:

@interface PlaceListViewController : UIViewController <UITableViewDataSource, UITableViewDelegate, CLLocationManagerDelegate, UIAlertViewDelegate>
{
CLLocationManager *locationManager;
}

最佳答案

这些方法调用看起来不错,所以可能是您设置委托(delegate)的方式有问题。创建警报 View 时,是否将 delegate 设置为 self

UIAlertView *alert = [[[UIAlertView alloc] initWithTitle:@"Ok"
message:@"Do action?"
delegate:self
cancelButtonTitle:@"Cancel"
otherButtonTitles:nil] autorelease];

关于ios - 无法检测到 UIAlertView 关闭,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9974124/

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