0

我会描述我想做什么。我有登录页面(ViewController)。

登录后,我传递给 UITabBarController - MainTabBar.m。这个 MainTabBar 有 'key' 属性,它从登录页面获取用户密钥。

UITabBarController 有 2 个选项卡 - Tab1.m、Tab2.m。

我想从每个选项卡访问 MainTabBar 属性。

我该怎么做?

谢谢!

4

1 回答 1

0

假设 Tab1 和 Tab2 是 UIViewController 子类,您可以访问 Tab1.m 或 Tab2.m 中的 key 属性,如下所示:

#import MainTabBar.h
//...//

// Getting the parent TabBarController
MainTabBar *parentTabBarController = (MainTabBar *)self.tabBarController;

// Getting the key property from the parent TabBarController
NSString *theUserKey = parentTabBarController.key;

希望能帮助到你!

于 2013-03-25T09:47:57.913 回答