UIAlertController * alertController = [UIAlertController alertControllerWithTitle:@"是否打开“微信”" message:@"" preferredStyle:UIAlertControllerStyleAlert];


UIAlertAction * cancleAction = [UIAlertAction actionWithTitle:@"取消" style:UIAlertActionStyleDefault handler:^(UIAlertAction * _Nonnull action) {

}];
[alertController addAction:cancleAction];




UIAlertAction * sureAction = [UIAlertAction actionWithTitle:@"打开" style:UIAlertActionStyleDefault handler:^(UIAlertAction * _Nonnull action) {
        }];

 

[alertController addAction:sureAction];
[self presentViewController:alertController animated:YES completion:nil];

内容来源于网络如有侵权请私信删除

文章来源: 博客园

原文链接: https://www.cnblogs.com/KiVen2015/p/13602263.html

你还没有登录,请先登录注册
  • 还没有人评论,欢迎说说您的想法!