presentModalViewController 可以被认为是 ios 应用程序中弹出窗口的一种方式吗?
我有一个基于选项卡栏的应用程序,需要显示某些视图。有些“屏幕”不属于选项卡。在这些情况下,明智的做法是使用presentModalViewController 或仅“插入视图”。
任何对此的想法将不胜感激。
I have a tab bar based application that needs to show certain views. There are certain "screens" that are not part of the tabs. In those cases is it wise to use presentModalViewController or just to "insert the view".
Any thoughts on this will be appreciated.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我肯定会使用presentModalViewController。它更容易编写和维护,并且免费动画为用户提供了额外的反馈。我不明白你为什么不想使用它。
I would definitely use
presentModalViewController
. It's easier to write and maintain and the free animation provides extra feedback to the user. I don't see why you wouldn't want to use it.