- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
使用 MGSplitViewController,如何更改细节 View Controller ?声明了一个属性:
@property (nonatomic, retain) IBOutlet UIViewController *detailViewController; // convenience.
执行 splitVC.detailViewController = myVC;
没有效果。相反,我必须执行 splitVC.viewControllers = @[masterVC, myVC];
。它有效,但这是正确的方法吗?
谢谢!
最佳答案
你做得对。来自 UISplitViewController引用:
The split view controller has no significant interface of its own. Its job is to manage the presentation of its two child view controllers and transitions between different orientations.
还有:
You must assign two view controllers to a split view controller. Usually you configure these view controllers in a storyboard; if you create a split view controller programmatically, you assign them using the viewControllers property.
关于objective-c - MGSplitViewController 更改详细 View Controller ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12229351/
我需要使用 MGSplitViewController,因为它能够在纵向模式下显示主视图 Controller 。但是,在显示 Split View之前,我需要显示一个登录屏幕。不幸的是,由于我调用了
有人在用MGSplitViewController吗?在 UITabBar 中? 我的目标基本上是在 UITabBar 中使用 UISplitViewController。 UISplitViewCo
我对使用 MGSplitViewController 很感兴趣,但它似乎有当前的错误,尤其是在 tabbarController 中使用时。我看到 github 上为此提交了很多补丁。有没有办法提取包
我在这里下载了 MGSplitViewController 项目: https://github.com/mattgemmell/MGSplitViewController 以及此处的绑定(bind)
使用 MGSplitViewController,如何更改细节 View Controller ?声明了一个属性: @property (nonatomic, retain) IBOutlet UIV
我是 iOS 编程的新手(来自 Java/C++)。我正在尝试使用 TabBarController 设置一个应用程序,其中一个选项卡应该是 SplitView。我已经完成我的研究并且我知道 UISp
我正在开发一款需要隐藏/显示 Split View的主 Controller 的 iPad 应用。 相关的 SO 答案请注意 Matt Gemmell 的 MGSplitViewController
我是一名优秀的程序员,十分优秀!