在纵向模式下的 splitview 中显示 rootview 控制器(uitableviewcontroller 子类)
我想在纵向模式下的 splitview 中显示 rootview 控制器(uitableviewcontroller 子类),默认情况下是隐藏的。当我切换到横向模式时,它可见,但我也想以纵向模式显示它。
感谢您的帮助。
I want to show rootview controller(uitableviewcontroller sublass) in splitview in portrait mode which is by default hidden.when i switch to landscape mode its visible but i want to show this in portrait mode also.
thanx for any help.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用标准 UISplitViewController 类是不可能实现这一点的。 Apple 有一个私有 API,他们使用它在“设置”应用程序中执行相同的操作。看看这个 MGSplitViewController ,它应该允许您在不违反私有 API 规则的情况下实现相同的效果。
This is not possible using the standard UISplitViewController class. Apple has a private API they use to do this same thing in the Settings app. Take a look at this MGSplitViewController which should allow you to achieve the same effect without breaking the private API rules.
看看 APSplitViewController。
Take a look at APSplitViewController.