提示框
Posted 战神在路上
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了提示框相关的知识,希望对你有一定的参考价值。
1 //初始化提示框; 2 UIAlertController *alert = [UIAlertController alertControllerWithTitle:@"提示" message:@"按钮被点击了" preferredStyle: UIAlertControllerStyleAlert]; 3 4 [alert addAction:[UIAlertAction actionWithTitle:@"确定" style:UIAlertActionStyleDefault handler:^(UIAlertAction * _Nonnull action) { 5 //点击按钮的响应事件; 6 }]]; 7 8 //弹出提示框; 9 [self presentViewController:alert animated:true completion:nil];
以上是关于提示框的主要内容,如果未能解决你的问题,请参考以下文章