Skip to content

Instantly share code, notes, and snippets.

@akitsukada
Last active August 29, 2015 14:02
Show Gist options
  • Save akitsukada/0fa2dd2ab2e1f8b6eee8 to your computer and use it in GitHub Desktop.
Save akitsukada/0fa2dd2ab2e1f8b6eee8 to your computer and use it in GitHub Desktop.
- (void) hoge
{
MyActionSheet *actionSheet = [MyActionSheet actionSheet];
[actionSheet addDestructButtonWithText:@"削除" onTapped:^(void){
NSLog(@"削除");
}];
[actionSheet addButtonWithText:@"編集" onTapped:^(void){
NSLog(@"編集");
}];
[actionSheet addCancelButtonWithText:@"キャンセル" onTapped:^(void){
NSLog(@"キャンセル");
}];
[actionSheet showInView:view];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment