如何在弹出窗口中显示操作表?
我有一个拆分视图控制器,其中左侧包含一个表视图控制器。当我单击表格单元格的详细信息披露按钮时,如何在弹出窗口内显示操作表?
I have a split View controller, in which the left side holds a table view controller. How do I show an action sheet inside the popover when I click on the detail disclosure button of the table cell?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
试试这个:
UIActionSheet 文档声明
showFromRect:inView:animated:
方法:Try this :
The UIActionSheet docs state that the
showFromRect:inView:animated:
method:我将其用于更高级用途:
可用于UIActionSheet或UIPopoverController。
这是我的代码:
在 iOS 4.3 到 5.1 中测试
最好用作自定义方法:
以及方法代码:
I use this for more advanced use:
Can be use for UIActionSheet or UIPopoverController.
Here is my code:
Tested in iOS 4.3 to 5.1
Best to use as custom method:
And method code: