显示模态视图
在我的应用程序中,我需要一个接一个地显示两个模态视图。点击一个屏幕将显示一个模态,然后此模态视图上的按钮将显示另一个模态。
我的模态视图还包含一个带有两个按钮的顶部栏。
显示这些模态视图的最佳方式是什么?我应该使用导航控制器来控制这些模态视图还是简单的视图控制器?
In my application, I need to show two Modal view one after the other. Tap on one screen will show a Modal and then a button on this Modal view will show another Modal.
Both my Modal view also contains a top bar with two buttons.
What is the best way to showing these Modal views. Should I use Navigation controller to control these Modal views or a simple view controller?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我只是使用视图控制器来设置它们。只需执行此操作即可在需要时呈现视图,并根据您的需要实现“完成”或“保存”UIBarButton。
I'd just have them set up using a view controller. Just do this to present the view when it's needed, and just implement a "Done" or "Save" UIBarButton depending on what you need it for.