我想在iPhone项目中使用全局变量和对象。
我创建了 NSobject 类并定义如下:
.h 文件:
#import <Foundation/Foundation.h>
@interface GlobelClass : NSObject
extern NSString *mystr;
extern NSMutableArray *Arrdata;
@end
.m 文件:
#import "GlobelClass.h"
@implementation GlobelClass
NSString *mystr;
NSMutableArray *Arrdata;
@end
什么是最好的方法或者我应该使用单例模式,如下面的链接答案:在 Objective-C 中使用全局变量
请分享想法?
在应用程序中使用全局变量的方法之一是:
您可以使用应用程序委托类本身:
.h 文件:
AppDelegate: UIResponder <UIApplicationDelegate> {
}
@property(nonatomic,strong) NSString* strUserID;
.m 文件:
@synthesize strUserID;
现在,您可以在UIViewController中将strUserID作为全局变量访问为:
ABCProjectAppDelegate *appDelegate = (ABCProjectAppDelegate*) [[UIApplication sharedApplication] delegate];
您可以设置值:
appDelegate.strUserID = @"Test";
获取值:
NSString *strId = appDelegate.strUserID;
:)