我有一个加载 UITabBarController 的类。每个选项卡都会打开一个 UINavigationController。
我正在尝试在我的 UINavigationControllers 中预加载视图。我试过这样做:
UITabBarController * tabBarController = (UITabBarController *)self.centerController;
NSArray *myViewControllers = tabBarController.viewControllers;
for (UINavigationController *navViewController in myViewControllers)
{
[navViewController loadView];
}
我尝试了不同的东西,但它永远不会被加载。难道我做错了什么?