如何使操作表按钮打开新视图
我有一个使用操作表的 iPhone 应用程序,但我不知道如何让其中一个按钮在按下时打开一个新视图。我知道如何实施操作表 - 这不是问题,问题是打开新视图的实际操作。
任何帮助将不胜感激。谢谢。
I have an iPhone app that uses an action sheet but I can't work out how to make one of the buttons open a new view when pressed. I know how to implement the action sheet - that's not a problem, its the actual action of opening the new view that's the issue.
Any help would be greatly appreciated. Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我通常只是创建一个新方法并让操作表来完成它。
例如:
然后,在您的 openModalView 方法中:
I usually just create a new method and have the action sheet do it.
For instance:
Then, in your
openModalView
method:在 UIAlertView 的 -didDismissWithButtonIndex 中,实例化新的视图控制器并将其推送到导航堆栈上:
In the UIAlertView's -didDismissWithButtonIndex, instantiate your new view controller and push it onto the navigation stack: