今天在使用xcode自带的Analyze静态分析工具对项目进行了检测分析,在使用有的第三方中报错:Returning 'self' while it is not set to the result of [(super or self) init...]
- (instancetype)init
{
if ([super init]) {
if (self) {
}
}
return self;
}
- (instancetype)init
{
self = [super init];
if (self) {
if (self) {
}
}
return self;
}