UIAlertViewを使ってアラートを表示させる
UIAlertViewを使ってアラートを表示させる
UIAlertView * alert = [[UIAlertView alloc] initWithTitle:@"タイトル" //アラートのタイトル message:@"メッセージ" //アラートのメッセージ delegate:self //デリゲート cancelButtonTitle:@"キャンセル" //キャンセルボタン otherButtonTitles:@"OK", nil]; //確認ボタンの表示名 [alert show]; //アラートを表示 [alert release]; //開放