Skip to content

Instantly share code, notes, and snippets.

- (void) hoge
{
MyActionSheet *actionSheet = [MyActionSheet actionSheet];
[actionSheet addDestructButtonWithText:@"削除" onTapped:^(void){
NSLog(@"削除");
}];
[actionSheet addButtonWithText:@"編集" onTapped:^(void){
NSLog(@"編集");
}];
[actionSheet addCancelButtonWithText:@"キャンセル" onTapped:^(void){