Skip to content

Instantly share code, notes, and snippets.

@akitsukada
Last active August 29, 2015 14:02
Show Gist options
  • Save akitsukada/26270c0c5072a148f3ea to your computer and use it in GitHub Desktop.
Save akitsukada/26270c0c5072a148f3ea to your computer and use it in GitHub Desktop.
- (void) hoge
{
SuperAlertView *alertView = [SuperAlertView alertViewWithTitle:@"タイトル"
message:@"メッセージ"];
[alertView addButtonWithLabel:@"OK"
onTapped:^(void){
NSLog(@"OK");
}];
[alertView addCancelButtonWithLabel:@"CANCEL"
onTapped:^(void){
NSLog(@"CANCEL");
}];
[alertView show];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment