ARC单例模式的实现
摘要:
使用alloc方法初始化一个类的实例的时候,默认是调用了 allocWithZone 的方法。 重写allocWithZone方法\ //重写allocWithZone:方法,在这里创建唯一的实例(注意线程安全) static id _instance; +(instancetype)alloc { 阅读全文
posted @ 2019-07-18 18:14 HWWY 阅读(151) 评论(0) 推荐(0) 编辑