アットウィキロゴ

UIAlertView

UIAlertView *alert = [[UIAlertView alloc] init];
alert.title = @"タイトル"; 
alert.message = @"本文";
alert.delegate = self;
[alert addButtonWithTitle:@"OK"]; 
[alert show ];
 
#pragma mark - アラートボタンタップイベント
-(void)alertView:(UIAlertView*)alertView 
clickedButtonAtIndex:(NSInteger)buttonIndex // ボタン番号
{ 
    NSLog(@"%d番目",buttonIndex);
}

タグ:

+ タグ編集
  • タグ:
最終更新:2012年09月13日 17:57
ツールボックス

下から選んでください:

新しいページを作成する
ヘルプ / FAQ もご覧ください。