我尝试spliviewcontroller
在 iPad 应用程序中实现。在我的 masterTable 中有 10 行,每行通过主表行选择(如 iPad 中的“设置”)导航到不同的详细信息视图。
我搜索了很多,但没有找到任何具有这样功能的东西。
我从这里得到了代码:RayWenderLich
我尝试spliviewcontroller
在 iPad 应用程序中实现。在我的 masterTable 中有 10 行,每行通过主表行选择(如 iPad 中的“设置”)导航到不同的详细信息视图。
我搜索了很多,但没有找到任何具有这样功能的东西。
我从这里得到了代码:RayWenderLich
最简单的方法是当用户点击该行时,更改viewControllers
属性以为 SplitViewController 的 DetailViewConroller 设置特定的 ViewController。
AppDel.splitViewController.viewControllers = @[navigationController, detailViewController];
其中 splitViewController 是 AppDelegate 的一个属性:
@property (strong, nonatomic) YourSplitViewController *splitViewController;
并且YourSplitViewController
是 的子类UISplitViewController
。
AppDel 是define
:
#define AppDel ((AppDelegate*)[UIApplication sharedApplication].delegate)