这是我在这个了不起的社区上的第一篇文章。现在已经浏览了很长一段时间,我完全爱上了它。
我已经学习 iOS 几个星期了,但仍在努力寻找为我正在构建的应用程序实现健壮和稳固结构的最佳方法。我发现“ UITabBarController ”是实现我的目标的最佳方式,但我仍然希望标签栏消失并制作我自己的“极端”自定义导航。自定义导航将是一个带有视图
的UIViewControllerUIButtons
,并且该视图包含.
所以这出现在我的AppDelegate.m中:
// ASSIGN CUSTOM NAV & TAB BAR CONTROLLER
[self.window setRootViewController:tabBarController];
[tabBarController.view addSubview:customNavController.view];
我的AppDelegate.h中有这个:
@property (strong, nonatomic) CustomNavigationViewController* customNavController;
@property (strong, nonatomic) UITabBarController* tabBarController;
这是正确的方法吗?所以我总是可以去我的AppDelegate
,让我customNavController
可以发送消息到.. 还有我的,例如tabBarController
设置属性。selectedIndex
所以主要问题仍然存在:我有一个UITabBarController
(保存应用程序的所有部分)和一个UIViewController
(自定义导航),我希望他们能够互相交谈。
更新:这是我如何看待脑海中流程的方案截图: https ://www.dropbox.com/s/5k49pe2idn6zxcd/ios_customnavigation_scheme.png
欢迎任何技巧/提示!好奇你们想出什么办法。在此先感谢,Y。