macOS/iOS API解説

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

目次

showFromToolbar:

INDEX>UIKit>UIActionSheet

指定したツールバーからアニメーションを使って表示します
- (void)showFromToolbar:(UIToolbar *)toolbar

クラス

UIActionSheet

返り値

id UIActionSheetまたはUIActionSheetのサブクラスの新しく初期化されたインスタンス

パラメータ

toolbar
ツールバー

例文

	UIActionSheet *aSheet = [[UIActionSheet alloc] initWithTitle:@"title" 
									delegate: self
		cancelButtonTitle:@"cancelButtonTitle" 
		destructiveButtonTitle:@"destructiveButtonTitle" 
		otherButtonTitles:@"otherButtonTitles",nil];

説明

使用可能

iPhone OS 2.0 以降.

参照先

– showInView:

定義

UIAlert.h