向项目中添加了共享工具包组,发现很多编译警告已修复,但其中大部分仍然显示。
这个来自 OAMutableURLRequest.m 类
- (void)_generateNonce
{
CFUUIDRef theUUID = CFUUIDCreate(NULL);
CFStringRef string = CFUUIDCreateString(NULL, theUUID);
NSMakeCollectable(theUUID);// **Reference count decremented on this line**
nonce = (NSString *)string; //**Incorrect decrement of the reference count of an object that is not owned at this point by the caller on this line**
}
不知道如何解决这个问题。
感谢帮助。