UIAlertController* alertC = [UIAlertController alertControllerWithTitle:@"确认要离开吗?" message:@"离开的话已填的数据就没了哦" preferredStyle:UIAlertControllerStyleAlert]; //style分为中间弹出,还是底下弹出列表
UIAlertAction* cancelAction = [UIAlertAction actionWithTitle:@"取消" style:UIAlertActionStyleCancel handler:^(UIAlertAction* _Nonnull action) {
}];
UIAlertAction* doneAction = [UIAlertAction actionWithTitle:@"确认" style:UIAlertActionStyleDefault handler:^(UIAlertAction* _Nonnull action) {
}];
[alertC addAction:cancelAction];
[alertC addAction:doneAction];
[self presentViewController:alertC animated:YES completion:nil];
UIAlertController使用
最新推荐文章于 2018-04-28 18:42:12 发布