1,value stored to 'res' during its initialization is never read
意义:‘res’这个变量在初始化之后就再没被读取过了
代码:
BOOL res = [pwdLocal isEqualToString:pwd];
#warning 暂时把密码设为任意........
res = YES;
2,value stored 'ccStatus' is never read
意义:ccStatus 这个对象没有被使用过
3,potential leak of memory point to by 'bufferPtr'
指向bufferPtr的内存潜在的内存泄漏
4,branch condition evaluates to a garbage value
分之条件会造成垃圾值
对象引用计数器的不正确递减
还有的等找到补充