Skip to content

Instantly share code, notes, and snippets.

@bsdshell
Last active August 29, 2015 14:26
Show Gist options
  • Save bsdshell/433ce9361ac3cd8bd15d to your computer and use it in GitHub Desktop.
Save bsdshell/433ce9361ac3cd8bd15d to your computer and use it in GitHub Desktop.
UIAlertController alert message
UIAlertController* alert = [UIAlertController alertControllerWithTitle:@"My Alert"
message:@"This is an alert."
preferredStyle:UIAlertControllerStyleAlert];
UIAlertAction* defaultAction = [UIAlertAction actionWithTitle:@"OK" style:UIAlertActionStyleDefault
handler:^(UIAlertAction * action) {
NSLog(@"this is my action");
}];
[alert addAction:defaultAction];
[self presentViewController:alert animated:YES completion:nil];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment