在外国网站上看到一个用artoolKit做的demo,学习了用gcd创建单列

外国网站:http://www.raywenderlich.com/42266/augmented-reality-ios-tutorial-location-based

看了下里面的demo,源代码里有个用gcd创建的实例;

于是就百度了下:dispatch_once_t  发现用它来创建单例很方便;

http://bj007.blog.51cto.com/1701577/649413/

+ (PlacesLoader *)sharedInstance {

static PlacesLoader *instance = nil;

staticdispatch_once_t onceToken;

dispatch_once(&onceToken, ^{

instance = [[PlacesLoader alloc] init];

});

return instance;

}

上一篇:Wordpress本地伪静态设置


下一篇:laravel 学习笔记 —— 神奇的服务容器