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