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 回答