プロジェクトに共有キット グループを追加したところ、非常に多くのコンパイル警告がほとんど修正されましたが、まだ表示されているものはほとんどありません。
これは 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**
}
これを修正する方法がわかりません。
手伝ってくれてありがとう。