UIAlertController在AppDelegate里面

2016-09-14  本文已影响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];
上一篇 下一篇

猜你喜欢

热点阅读