iPhone アプリで警告画面を表示させる方法です。 警告画面を表示する UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"Alert Test" message:@"Message!!\nThis is Alert Test." delegate:self cancelButtonTitle:@"Cancel" otherButtonTitles:@"One", @"Two", nil]; [alert show]; [alert release]; message で改行をさせたい場合は “\n” を指定する。 キャンセルボタンを非表示にするには cancelButtonTitile:nil otherButtonTitles は表示したいボタンの数だけ指定し、最後に nil を指定。 表示する際に以下のようにすると縦に