- 2023-07-12怎么销毁单例
staticNGUser*sharedInstance=nil;staticdispatch_once_tonceToken;+(instancetype)sharedInstance{dispatch_once(&onceToken,^{//调用父类的allocWithZone,不能使用self,避免循环引用sharedInstance=[[superallocWithZone:NULL]init];});
- 2022-11-05单例写法,双重检查
publicstaticConversionServicegetSharedInstance(){ApplicationConversionServicesharedInstance=ApplicationConversionService.sharedInstance;if(sha
- 2022-08-14swift 比 oc 爽在哪里
好维护,重构方便编译器提示多,改函数名字,变量名字,oc有时候名字会匹配错如果你扩展了枚举类型,switchcase会有完备性提示。拆代码容易没有头文件,拆分代码比较容易,代码