Skip to content

Instantly share code, notes, and snippets.

@givp
Created December 23, 2015 00:49
Show Gist options
  • Save givp/da8880e3f0ef234ff61a to your computer and use it in GitHub Desktop.
Save givp/da8880e3f0ef234ff61a to your computer and use it in GitHub Desktop.
Simple alert view for Watch OS2 in Objective-C
WKAlertAction *action = [WKAlertAction actionWithTitle:@"OK" style:WKAlertActionStyleDefault handler:^{
// do something after OK is clicked
}];
[self presentAlertControllerWithTitle:@"Oops!" message:@"Something happened." preferredStyle:WKAlertControllerStyleAlert actions:@[action]];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment