有什么方法可以在tabbarcontroller中为所有选项卡使用公共变量吗?

时间:2013-05-22 04:29:12

标签: ios ios6 uitabbarcontroller uitabbar

我在tabbarcontroller中创建4个标签,我想在所有标签中使用像名字这样的公共变量如何做到

由于

1 个答案:

答案 0 :(得分:2)

通过在AppDelegate中声明对象将是访问所有四个选项卡中对象的最简单方法。做点什么..

<强> AppDelegate.h

@property (strong, nonatomic) NSString *strName;

<强> ViewController.m

#import "AppDelegate.h"

AppDelegate *appDelegate = [[UIApplication sharedApplication] delegate];
//Set Value
appDelegate.strName = @"Some value";
//Get Value
NSLog(@"%@",appDelegate.strName);