jubilee

Programing, Books and more...

UIActionSheetでタップされたボタンのタイトルを取得する

UIActionSheetで、タップされたボタンのタイトルを取得する方法。

1
2
3
4
5
6
7
8
- (void)actionSheet:(UIActionSheet *)actionSheet clickedButtonAtIndex:(NSInteger)buttonIndex
{
    // キャンルボタンかどうかの判断(おまけ)
    if (buttonIndex != actionSheet.cancelButtonIndex) {
        // タップされたボタンのタイトルを取得
        _label.text = [actionSheet buttonTitleAtIndex:buttonIndex];
    }
}