2014年3月14日

通用单例的写法

摘要: + (id)sharedInstance{ static id sharedInstance; static dispatch_once_t once; dispatch_once(&once, ^{ sharedInstance = [[[self class] alloc] init]; }); return sharedInstance;} 阅读全文

posted @ 2014-03-14 14:37 流れ星ーー 阅读(110) 评论(0) 推荐(0) 编辑

导航