允许在单例类中为变量定义属性和综合?,如下面的接口,
@property(nonatomic,assign)NSInteger value;
在实现文件中,
@synthesize value;
或者我们只需要声明一个如下所示的变量,
@interface SingletonDataClass : NSObject
{
NSInteger value;
}
允许在单例类中为变量定义属性和综合?,如下面的接口,
@property(nonatomic,assign)NSInteger value;
在实现文件中,
@synthesize value;
或者我们只需要声明一个如下所示的变量,
@interface SingletonDataClass : NSObject
{
NSInteger value;
}