0

私はアップル開発者ライブラリを読んでいて、アップルが写真に示しているようなサブメニューを使用したいと考えています:

ここに画像の説明を入力

最初の質問: それはモーダル ビューですか? はいの場合、そのようなものを作成する方法は? このサブメニューには独自のコントローラーとビューがありますか、それとも上記のビューで宣言されているものだけですか? ストーリーボードを使用しています。

4

1 に答える 1

2

いいえ、これは ですUIActionSheet。nib ファイルやクラス ファイルはありません。このように使用します。

UIActionSheet *sheet = [[UIActionSheet alloc] initWithTitle:@"Title" 
                                                   delegate:self 
                                          cancelButtonTitle:@"cancel"
                                     destructiveButtonTitle:nil
                                          otherButtonTitles: nil];
[sheet showInView:self.view];

//Function gets called when user taps on a button
-(void)actionSheet:(UIActionSheet *)actionSheet clickedButtonAtIndex:(NSInteger)buttonIndex
{

}
于 2012-06-30T12:39:21.960 に答える