开发遇到的错误

在开发中的打印提示中总是有这个提示
_NSZombie_NSURLRequestInternal is implemented in both ?? and ??. One of the two will be used. Which one is undefined.

我出现这个的原因是

@property (nonatomic, strong) TSMIneVCL * mineVCL;


- (TSMIneVCL *)mineVCL {
    if (!_mineVCL) {
        _mineVCL = [[TSMIneVCL alloc] init];
    }
    return _mineVCL;
}

打印结果


打印结果.png

修改

@property (nonatomic, weak) TSMIneVCL * mineVCL;

TSMineVCM * vc = [[TSMineVCM alloc] init];
self.mineVCM = vc;

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。

推荐阅读更多精彩内容