Guest User

Untitled

a guest
Jun 22nd, 2018
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.59 KB | None | 0 0
  1. UIAlertController * alertVC = [UIAlertController alertControllerWithTitle:@"当前位置信息" message:@"XXXXXXXX" preferredStyle:UIAlertControllerStyleAlert];
  2. UIAlertAction * cancelAction = [UIAlertAction actionWithTitle:@"取消" style:UIAlertActionStyleCancel handler:^(UIAlertAction * _Nonnull action) {
  3.  
  4. }];
  5.  
  6. UIAlertAction * sureAction = [UIAlertAction actionWithTitle:@"确定" style:UIAlertActionStyleDefault handler:^(UIAlertAction * _Nonnull action) {
  7.  
  8. }];
  9. [alertVC addAction:cancelAction];
  10. [alertVC addAction:sureAction];
  11. [self presentViewController:alertVC animated:YES completion:nil];
Add Comment
Please, Sign In to add comment