UIActionSheet用于让用户在多个选项之间进行选择。操作表从底部弹出。
。
继承UIActionSheetDelegate
。按下按钮弹出表单
#pragma mark -
#pragma mark Btn press
-(void)photoBtnPress{
UIActionSheet *actionSheet = [[UIActionSheet alloc]
initWithTitle:@"表单标题"
delegate:self
cancelButtonTitle:@"取消"
destructiveButtonTitle:@"元素1"
otherButtonTitles:@"元素2",@"元素3", nil];
[actionSheet showInView:self.view];
[actionSheet release];
}
。表单回调
#pragma mark -
#pragma mark UIActionSheetDelegate
- (void)actionSheet:(UIActionSheet *)actionSheet clickedButtonAtIndex:(NSInteger)buttonIndex {
NSLog(@"buttonIndex: %d", buttonIndex);
}
本文介绍了如何使用UIActionSheet来创建一个从底部弹出的操作表单,并提供了具体的实现代码示例,包括初始化表单、设置回调等关键步骤。
2824

被折叠的 条评论
为什么被折叠?



