・ボタンを1つ表示する場合

-(void)hoge
{
UIAlertView *alert =
[[UIAlertView alloc] initWithTitle:@"完了" message:@"hogehoge"
delegate:self cancelButtonTitle:@"OK" otherButtonTitles:nil];
[alert show];
}

・ボタンを2つ表示する場合

UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"確認" message:@"あなたのリストから削除してもよろしいですか?"
delegate:self cancelButtonTitle:@"いいえ" otherButtonTitles:@"はい", nil];
[alert show];

この記事を書いた人

kubou

kubou

2049, inc.
web業界で生活しています。
お仕事の割合はディレクション:8、開発:2くらい。