我会描述我想做的事情。 我有登录页面(ViewController)。
登录后,我转到UITabBarController - MainTabBar.m。 此MainTabBar具有“key”属性,该属性从登录页面获取用户密钥。
UITabBarController有2个标签 - Tab1.m,Tab2.m。
我想从每个标签访问MainTabBar属性。
我是怎么做到的?
谢谢!
答案 0 :(得分: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;
希望它有所帮助!