我正在开发一个通用应用程序(适用于iPhone和iPad)。
以下是app的要求。
要求
1.应该有一个菜单(左侧是主菜单)和详细信息(右侧)。
2.对于iPhone菜单或masterViewController,应位于抽屉或滑出菜单上。
3.对于iPad,菜单应位于splitView的rootViewController上。
我已经尝试过
我尝试使用spiltViewController
来实现它,对于iPad来说,它可以正常工作(MasterViewController
在屏幕的左侧,而DetailViewController
在屏幕的右侧),但是对于iPhone,它只是作为UINavigationController
(MasterViewController
Controller ,作为rootViewController
的UINavigationController
)工作。 。
我应该使用什么方法来实现它?
最佳答案
从iOS8开始,您可以为此使用UISplitViewController。
该解决方案在此WWDC 2014视频中从14:00 aprox开始:
View Controller Advancements in iOS8
有关更多信息,请访问:
http://coding.tabasoft.it/ios/the-new-uisplitviewcontroller/
关于ios - 适用于iPad的SplitView和适用于iPhone的菜单抽屉,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/30044060/