我在tabbarcontroller中创建4个标签,我想在所有标签中使用像名字这样的公共变量如何做到
由于
答案 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);