【iPhoneプログラム】基本 Alert(アラート)

『Alert』はプログラムの基本中の基本。

 

UIAlertView *baseAlert = [[UIAlertView alloc] initWithTitle:@"タイトル"

                                         message:@"メッセージ"

                                         delegate:self

                                         cancelButtonTitle:nil

                                         otherButtonTitles:@"OK", nil];


[baseAlert show];

 

実行してみた

 

ピクチャ 9

はい、丑三つ時です。

慣れるまで我慢。

 

今日はお休み。

コメント