摘要: 单例的实现有多种方法,如下面class SwiftSingleton { class var shared: SwiftSingleton { if !Inner.instance { Inner.instance = SwiftSingleton() ... 阅读全文
posted @ 2014-10-28 11:21 Maple023 阅读(166) 评论(0) 推荐(0) 编辑