我尝试使用折射器自动将 GDATAXML Lib 转换为 ARC -> 在 XCode 4.2 中转换为 ARC Objective-C。
ARC转换器给出以下错误:
result = [NSString stringWithUTF8String:(const char *) chars];
if (cacheDict) {
// save the string in the document's string cache
CFDictionarySetValue(cacheDict, chars, result);
}
错误:将 Ojective-C 指针隐式转换为 void。
有没有人成功地将 GDATAXML 库转换为 ARC Objective-C?