我是iPhone App Developpment的新手,我正在使用XCode 4.2
我想实现一个与此类似的列表,但我不知道它的名称是什么(它是出现在相册中的选项列表):
由于
答案 0 :(得分:1)
结帐UIActionSheet
- Apple Class Reference
options = [[UIActionSheet alloc]
initWithTitle:nil
delegate:self
cancelButtonTitle:@"Cancel"
destructiveButtonTitle:nil
otherButtonTitles:@"Email Photo", @"Message", @"Assign to Contact", @"Use as Wallpaper", @"Tweet", @"Print", nil];
[options showInView:self.view];
[options release];