iOS8.0之后的UIAlertController

来源:互联网 发布:小人书软件下载 编辑:程序博客网 时间:2024/05/16 14:34

UIAlertView is deprecated. Use UIAlertController with a preferredStyle of UIAlertControllerStyleAlert instead.

可以通过以下方法进行替换:

UIAlertController * alert=   [UIAlertController                                 alertControllerWithTitle:@"Title"                                 message:@"Message"                                 preferredStyle:UIAlertControllerStyleAlert];   UIAlertAction* yesButton = [UIAlertAction                        actionWithTitle:@"Yes, please"                        style:UIAlertActionStyleDefault                        handler:^(UIAlertAction * action)                        {                            //Handel your yes please button action here                        }];   UIAlertAction* noButton = [UIAlertAction                            actionWithTitle:@"No, thanks"                           style:UIAlertActionStyleDefault                           handler:^(UIAlertAction * action)                           {                               //Handel no, thanks button                           }];   [alert addAction:yesButton];   [alert addAction:noButton];   [self presentViewController:alert animated:YES completion:nil];
0 0
原创粉丝点击