-5

我在 tabbarcontroller 中创建 4 个选项卡,我想在所有选项卡中使用通用变量,如名称,如何做到这一点

谢谢

4

1 回答 1

2

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

AppDelegate.h

@property (strong, nonatomic) NSString *strName;

视图控制器.m

#import "AppDelegate.h"

AppDelegate *appDelegate = [[UIApplication sharedApplication] delegate];
//Set Value
appDelegate.strName = @"Some value";
//Get Value
NSLog(@"%@",appDelegate.strName);
于 2013-05-22T04:36:54.330 回答