标签:style io color ar os sp 文件 on bs
在ios4之后出现了一种单例的写法:
首先创建一个继承于NSObject的类
在.h文件中声明一个类方法
+ (InstallStatisticsClass *)shareInstance;
在.m中将这个方法
+ (InstallStatisticsClass *)shareInstance
{
static InstallStatisticsClass *instance = nil;
static dispatch_once_t str;
dispatch_once (&str,^{
instance = [[super allocWithZone:nil] init];
});
return instance;
}
标签:style io color ar os sp 文件 on bs
原文地址:http://www.cnblogs.com/anyezhuixing/p/4092454.html