・ボタンを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];