2012年6月30日土曜日

UIAlertViewのテンプレート

UIAlertViewを使う機会が多いのでテンプレートをメモで。

以下のものは生成と同時に設定も行っています。
UIAlertView *alertView = [[UIAlertView alloc] initWithTitle:nil
          message:@"タイトル"  //タイトル
          delegate:self  //デリゲートを自分自身に
          cancelButtonTitle:nil  //キャンセルボタン
          otherButtonTitles:@"OK", nil];  //確認ボタン
[alertView show];
[alertView release];
 

参考記事

UIAlertView - iPhoneアプリ開発の虎の巻

0 件のコメント:

コメントを投稿