macOS/iOS API解説

iOS , Mac アプリケーション開発のために使われる主要フレームワークの日本語情報です。2010年代に書かれた内容です。今後更新はありません。

目次

initWithTitle:delegate:cancelButtonTitle:destructiveButtonTitle:otherButtonTitles:

INDEX>UIKit>UIActionSheet

モーダルビューを初期化するのに便利なメソッド
- (id)initWithTitle:(NSString *)title delegate:(id < UIModalViewDelegate >)delegate cancelButtonTitle:(NSString *)cancelButtonTitle destructiveButtonTitle:(NSString *)destructiveButtonTitle otherButtonTitles:(NSString *)otherButtonTitles, ...

クラス

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