UIAlertController
Posted 有棱角的圆
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了UIAlertController相关的知识,希望对你有一定的参考价值。
UIAlertView ios9.0之后注销了,简单介绍一下UIAlertController的使用:
//提醒控制器类型有两种UIAlertControllerStyleActionSheet和UIAlertControllerStyleAlert UIAlertController *alertC=[UIAlertController alertControllerWithTitle:@"" message:@"" preferredStyle:UIAlertControllerStyleActionSheet]; // UIAlertController *alert=[UIAlertController alertControllerWithTitle:@"title" message:@"message" preferredStyle:UIAlertControllerStyleAlert]; // UIAlertAction *cancel=[UIAlertAction actionWithTitle:@"Cancel" style:UIAlertActionStyleDefault handler:^(UIAlertAction *action){ }]; //添加动作 [alert addAction:cancel]; //添加textfield [alert addTextFieldWithConfigurationHandler:^(UITextField *text){ }]; //展示提醒控制器 [self presentViewController:alert animated:YES completion:nil];
以上是关于UIAlertController的主要内容,如果未能解决你的问题,请参考以下文章
在 UIAlertController 下获取最顶层的视图控制器