可以在同一个窗口/视图上有两个表视图作为 iPad 上的主从概念吗?
我的 iPad 应用程序中有一个 UITabBar
,并且我需要在我的一个 UITabBar
视图上有一个主从概念。
我无法使用 UISplitViewController
因为 Apple 说:
The split view controller’s view should always be installed as the root view
of your application window. You should never present a split view inside of
a navigation or tab bar interface.
在 iPad 上的主从概念相同的视图上可以有两个 UITableViews
吗?对于这个想法还有其他方法吗?
I have a UITabBar
in my iPad app, and I need to have a Master-Detail concept on one of my UITabBar
views.
I can't use UISplitViewController
because Apple says:
The split view controller’s view should always be installed as the root view
of your application window. You should never present a split view inside of
a navigation or tab bar interface.
Is it ok to have two UITableViews
on same view as Master-Detail concept on iPad? Is there any other approach for this idea?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我不知道在一个选项卡中拥有两个表视图有什么限制。我会这样处理:
I don't know of any limitation about having two table views in a tab. I'd approach it like this: