如何在XCODE 4.2中使GDATAXML与ARC兼容?

前端之家收集整理的这篇文章主要介绍了如何在XCODE 4.2中使GDATAXML与ARC兼容?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我尝试使用折射器自动将GDATA XML 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);
  }

error: Impicit conversion of Ojective-C pointer to void.

有没有人成功将GdataxML Libs转换为ARC Objective-C?

解决方法

原文链接:https://www.f2er.com/iOS/328934.html

猜你在找的iOS相关文章