博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
iOS 底部对话框UIActionSheet
阅读量:6070 次
发布时间:2019-06-20

本文共 987 字,大约阅读时间需要 3 分钟。

hot3.png

UIActionSheet提供了一个菜单式的界面,为用户提供操作命令选项,界面是从屏幕底部向上弹出。
下面提供了使用UIActionSheet的样例代码:
定义UIActionSheet对象

在类中申明UIActionSheet对象,如果需要处理选择UIActionSheet项后的消息,则需要使用UIActionSheetDelegate。

@interface  MyClassController : UIViewController 
{ UIActionSheet *sheet;}@end
创建和显示UIActionSheet
在创建UIActionSheet对象时,指定接收UIActionSheetDelegate代理对象。

sheet = [[UIActionSheet alloc] initWithTitle:@"Select Belgian Beer Style"                                      delegate:self                             cancelButtonTitle:@"Cancel"                       destructiveButtonTitle:nil                            otherButtonTitles:@"Dubble", @"Lambic", @"Quadrupel", @"Strong Dark Ale", @"Tripel", nil];   // Show the sheet  [sheet showInView:self.view];  [sheet release];
判断哪一个选项被选中,在MyClassController中实现下面方法,在此方法中实现需要处理的逻辑。

- (void)actionSheet:(UIActionSheet *)actionSheet didDismissWithButtonIndex:(NSInteger)buttonIndex{  NSLog(@"Button %d", buttonIndex);}

转载于:https://my.oschina.net/kevinvane/blog/129730

你可能感兴趣的文章
《ELK Stack权威指南(第2版)》一3.6 Java日志
查看>>
反射操作公共成员变量
查看>>
linux在文件中查找指定字符串,然后根据查找结果来做进一步的处理
查看>>
小孩的linux
查看>>
CSS3 transforms 3D翻开
查看>>
java基础---->正则表达式
查看>>
2.2013/06/13_log(n)+1
查看>>
关于加载iframe时进度条不消失的问题
查看>>
poj 3984迷宫问题【广搜】
查看>>
oracle ORA-01840:输入值对于日期格式不够长
查看>>
python基础知识~logger模块
查看>>
SIP入门(二):建立SIPserver
查看>>
Servlet3.0的异步
查看>>
WebService连接postgresql( 失败尝试)
查看>>
从头认识java-13.11 对照数组与泛型容器,观察类型擦除给泛型容器带来什么问题?...
查看>>
Python-MacOSX下SIP引起的pip权限问题解决方案(非取消SIP机制)
查看>>
从MFQ方法到需求分析
查看>>
android.view.WindowManager$BadTokenException: Unable to add window
查看>>
HDU5012:Dice(bfs模板)
查看>>
iphone openssh
查看>>