iOS弹窗UIAlertAction用法
Posted 洛洛沙
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了iOS弹窗UIAlertAction用法相关的知识,希望对你有一定的参考价值。
1 UIAlertController *alert = [UIAlertController alertControllerWithTitle:@"确认" message:@"确认删除吗?" preferredStyle:UIAlertControllerStyleAlert]; 2 3 UIAlertAction *action1 = [UIAlertAction actionWithTitle:@"取消" style:UIAlertActionStyleDestructive handler:^(UIAlertAction * _Nonnull action) { 4 //取消处理 5 }]; 6 7 UIAlertAction *action2 = [UIAlertAction actionWithTitle:@"确认" style:UIAlertActionStyleDefault handler:^(UIAlertAction * _Nonnull action) { 8 //确认处理 9 }]; 10 11 [alert addAction:action1]; 12 [alert addAction:action2]; 13 [self.navigationController presentViewController:alert animated:YES completion:nil];
以上是关于iOS弹窗UIAlertAction用法的主要内容,如果未能解决你的问题,请参考以下文章
这个 UIAlertAction 代码有啥问题?不允许点击/点击并在应用程序中前进
是否可以编辑 UIAlertAction 标题字体大小和样式?