UIAlertController简单使用

Posted oimm

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了UIAlertController简单使用相关的知识,希望对你有一定的参考价值。

UIAlertView   在ios2 的时候开始使用,在iOS9 的时候被摒弃

NS_CLASS_DEPRECATED_IOS(2_0, 9_0, "UIAlertView is deprecated. Use UIAlertController with a preferredStyle of UIAlertControllerStyleAlert instead") __TVOS_PROHIBITED

 

由UIAlertController替代

常用使用方法

    UIAlertController *alertvc = [UIAlertController alertControllerWithTitle:@"提示" message:@"表视图封装" preferredStyle:UIAlertControllerStyleAlert];
    UIAlertAction *sureAction = [UIAlertAction actionWithTitle:@"确定" style:UIAlertActionStyleDefault handler:^(UIAlertAction * _Nonnull action) {
        //要执行的操作
    }];
    [alertvc addAction:sureAction];
    UIAlertAction *cancelAction = [UIAlertAction actionWithTitle:@"取消"style:UIAlertActionStyleDefault handler:^(UIAlertAction * _Nonnull action) {
        //要执行的操作
        
    }];
    [alertvc addAction:cancelAction];
    
    [self  presentViewController:alertvc animated:YES completion:nil];

 

以上是关于UIAlertController简单使用的主要内容,如果未能解决你的问题,请参考以下文章

UIAlertController 简单修改title以及按钮的字体颜色

UIAlertController - 如果警报第一次解除,则不执行操作

iOS UIAlertController

Swift UIAlertController的用法

Swift UIAlertController的用法

UIAlertController