将视图添加到操作表中
我可以将自定义 UIViewController 添加到 ActionSheet 中吗?
谢谢
Can I add my custom UIViewController into the ActionSheet ?
thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
我可以将自定义 UIViewController 添加到 ActionSheet 中吗?
谢谢
Can I add my custom UIViewController into the ActionSheet ?
thanks
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(3)
终于我找到了它...我在 UIActionSheet 中添加了一个 UIViewController 子类的视图。我在单独的文件中创建了一个视图(使用 xib)。
finally I've find it... I've added a view which is subclass of UIViewController into the UIActionSheet. I've created a view in separate file (using xib) .
我最近创建了一个应用程序,在其中创建了操作表并在其中添加了选择器视图。
首先,您需要在 .h 文件中为操作表创建对象及其属性,如下所示:
然后您需要在 .m 文件中进行以下更改
I recently created an application where I created action sheet and added a picker view in it.
Firstly you need to create object for action sheet in your .h file as along with its properties as follows :
Then you need to make following changes in your .m file
我认为这些链接会对你有所帮助。我从未在 uiactionsheet 中添加视图,但经过一番搜索后我认为我们可以添加。
http://www.ifans.com/forums/showthread.php?t= 301851
如何在表格视图的单元格中添加操作表< /a>
i think these links will help u. i have never add a view in uiactionsheet but after a little search i think we can add.
http://www.ifans.com/forums/showthread.php?t=301851
how add the action sheet in the cell of table view