UIAlertMessage

2016-07-14  本文已影响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];

上一篇 下一篇

猜你喜欢

热点阅读