美文网首页
UIAlertController在AppDelegate里面

UIAlertController在AppDelegate里面

作者: 哎呦我去叫什么呢 | 来源:发表于2016-09-14 17:00 被阅读31次

UIAlertController * alertController = [UIAlertController alertControllerWithTitle:@"提示" message:payloadMsg preferredStyle:(UIAlertControllerStyleAlert)];
UIAlertAction *deleteAction = [UIAlertAction actionWithTitle:@"是" style:UIAlertActionStyleDefault handler:^(UIAlertAction * _Nonnull action) {

    }];
    UIAlertAction *archiveAction = [UIAlertAction actionWithTitle:@"取消" style:UIAlertActionStyleCancel handler:^(UIAlertAction * _Nonnull action) {
             }];
    [alertController addAction:deleteAction];
    [alertController addAction:archiveAction];
    [self.window.rootViewController presentViewController:alertController animated:YES completion:nil];

相关文章

网友评论

      本文标题:UIAlertController在AppDelegate里面

      本文链接:https://www.haomeiwen.com/subject/uwivettx.html