アラート
UIAlertView *alertView = [[UIAlertView alloc] initWithTitle:nil
message:@"タイトル" //タイトル
delegate:self //デリゲートを自分自身に
cancelButtonTitle:nil //キャンセルボタン
otherButtonTitles:@"OK", nil]; //確認ボタン
[alertView show];
[alertView release];
コンファーム
UIAlertView* confirmView =
[[[UIAlertView alloc] initWithTitle: @"ログインしていません"
message: @"ログインしますか"
delegate: self
cancelButtonTitle: @"いいえ"
otherButtonTitles: @"はい", nil] autorelease];
[confirmView show];
- (void)alertView:(UIAlertView *)alertView clickedButtonAtIndex:(NSInteger)buttonIndex {
if (buttonIndex==[alertView cancelButtonIndex]) {
//キャンセルボタン
return;
}
//キャンセル以外の処理
}
0 件のコメント:
コメントを投稿