提示框

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];

 

以上是关于提示框的主要内容,如果未能解决你的问题,请参考以下文章

你可能不知道的JavaScript代码片段和技巧(上)

vscode怎么提示

markdown 打字稿...编码说明,提示,作弊,指南,代码片段和教程文章

iOS代码片段CodeSnippets

IOS开发-OC学习-常用功能代码片段整理

eclipse代码提示框背景色改动