现在已经不用UIAlertView了,但是如何为UIAlertController添加目标,来相应事件?

发布于 2022-09-02 11:08:50 字数 788 浏览 14 评论 0

现在已经不用UIAlertView了,但是如何为UIAlertController添加目标,来相应事件?

之前是通过协议中的方法确定 按钮索引以此来相应事件,现在应该怎么做呢?

//删除按钮
-(void)delPerson:(UIButton*)sender{
   //点击删除应该显示警报:
    UIAlertController * d=[UIAlertController alertControllerWithTitle:@"你大爷的注意!" message:@"确定删除么?" preferredStyle:UIAlertControllerStyleAlert];
    //为警报添加按钮
    UIAlertAction * a1=[UIAlertAction actionWithTitle:@"是" style:UIAlertActionStyleDefault handler:nil];
    UIAlertAction * a2=[UIAlertAction actionWithTitle:@"是" style:UIAlertActionStyleDefault handler:nil];

    //^(UIAlertAction * a1) {}
    //将按钮添加到警报控件上
    [d addAction:a1];
    [d addAction:a2];
    //警报视图控制器呈现出来
    [self presentViewController:d animated:YES completion:nil];
 //为按钮增加目标,响应事件????
 
}

我怎么能确定我点击了那个按钮?而让其触发事件?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

仄言 2022-09-09 11:08:50

好好看下初始化方法,handler 就是触发执行的 block ,你都置 nil 了==

+ (instancetype)actionWithTitle:(NSString *)title style:(UIAlertActionStyle)style handler:(void (^)(UIAlertAction *action))handler
小糖芽 2022-09-09 11:08:50

可以看一看我专栏里的文章《从UIAlertView、UIActionSheet到UIAlertController》。

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文