splitViewController要注意的地方

splitViewController要注意的地方,第1张

概述splitViewController只能作为Window的根视图控制器 如果你向在viewController 中d出SpiltViewController.     myAppDelegate *app = (myAppDelegate *)[[UIApplication sharedApplication] delegate];     app.stubVC = app.window.roo

splitVIEwController只能作为Window的根视图控制器

如果你向在vIEwController 中d出SpiltVIEwController.

    myAppDelegate *app = (myAppDelegate *)[[UIApplication sharedApplication] delegate];

    app.stubVC = app.window.rootVIEwController;//保存导航前的根视图.。存在appDelegate的一个vIEwController中。

    app.window.rootVIEwController = splitVC;//改变根视图.

把根视图设为你的SpiltVIEwController。

在back的时候,再将rootVIEwController设回原来的。

    myAppDelegate *app = myAppDelegate *)[[UIApplication sharedApplication] delegate];

    app.window.rootVIEwController = app.stubVC;//设回原来的vIEwController

    UINavigationController *navigC = (UINavigationController *)app.stubVC;

具体情况具体分析!

总结

以上是内存溢出为你收集整理的splitViewController要注意的地方全部内容,希望文章能够帮你解决splitViewController要注意的地方所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1089125.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-27
下一篇 2022-05-27

发表评论

登录后才能评论

评论列表(0条)

保存