Skip to content

Instantly share code, notes, and snippets.

View RameshAran's full-sized avatar

Arangott Ramesh Chandran RameshAran

View GitHub Profile
[self presentViewController:alertView animated:YES completion:^{
NSLog(@"alertView shown!");
}];
[alertView addAction:[UIAlertAction actionWithTitle:@"ok"
style:UIAlertActionStyleDefault
handler:^(UIAlertAction *action) {
//todo
}]];
UIAlertController *alertView = [UIAlertController alertControllerWithTitle:@"Menu"
message:@"Select a menu"
preferredStyle:UIAlertControllerStyleAlert];