モーダルビューを初期化するのに便利なメソッド
- (id)initWithTitle:(NSString *)title delegate:(id < UIModalViewDelegate >)delegate cancelButtonTitle:(NSString *)cancelButtonTitle destructiveButtonTitle:(NSString *)destructiveButtonTitle otherButtonTitles:(NSString *)otherButtonTitles, ...
フレームワーク
UIKit
クラス
UIActionSheet
返り値
id UIActionSheetまたはUIActionSheetのサブクラスの新しく初期化されたインスタンス
パラメータ
title
タイトルバーに表示されるタイトル文字列
delegate
デリゲートオブジェクト、なければnil
cancelButtonTitle
キャンセルボタンのタイトル、なければnil
destructiveButtonTitle
otherButtonTitles
例文
UIActionSheet *aSheet = [[UIActionSheet alloc] initWithTitle:@"title" delegate: self cancelButtonTitle:@"cancelButtonTitle" destructiveButtonTitle:@"destructiveButtonTitle" otherButtonTitles:@"otherButtonTitles",nil];
説明
使用可能
iPhone OS 2.0 以降.
参照先
– showInView:
定義
UIAlert.h