摘要: 很多人实现单例会这样写: @implementation XXClass + (id)sharedInstance { static XXClass *sharedInstance = nil; @synchronized(self) { if (!sharedInstance) { sharedI 阅读全文
posted @ 2017-06-22 15:06 brave-sailor 阅读(285) 评论(0) 推荐(0)