smugwimp

New Alert (No Action)

Oct 2nd, 2017
164
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1.     UIAlertController * alertView = [UIAlertController
  2.                                      alertControllerWithTitle:@"My Title"
  3.                                      message:@"My Message"
  4.                                      preferredStyle:UIAlertControllerStyleAlert];
  5.     UIAlertAction* yesButton = [UIAlertAction actionWithTitle:@"My Button Title" style:UIAlertActionStyleDefault handler:^(UIAlertAction * action) { }];
  6.     [alertView addAction:yesButton];
  7.     [self presentViewController:alertView animated:YES completion:nil];
Advertisement
Add Comment
Please, Sign In to add comment