美文网首页
UIAlertMessage

UIAlertMessage

作者: 芥子劫 | 来源:发表于2016-07-14 09:55 被阅读0次

UIAlertController *alertController = [UIAlertController alertControllerWithTitle:@"提示" message:@"完成注册" preferredStyle:UIAlertControllerStyleAlert];

UIAlertAction *cancelAction = [UIAlertAction actionWithTitle:@"确定" style:UIAlertActionStyleCancel handler:^(UIAlertAction *action) {

NSLog(@"取消");

}];

[alertController addAction:cancelAction];

[self presentViewController:alertController animated:YES completion:nil];

相关文章

  • UIAlertMessage

    UIAlertController *alertController = [UIAlertController a...

网友评论

      本文标题:UIAlertMessage

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