iOS 5 上的自动发布的 TBXML 问题
我已经在 iOS 5 中尝试过 TBXML ..
但如你所知,自动释放在 iOS 5 中不再使用.. 所以当我开始运行应用程序时它给我错误..
有人能解决这个问题吗?
或者任何人都可以告诉我另一个轻量级 xml 解析器?
i have try TBXML in iOS 5..
but as you know, autorelease is not use again in iOS 5..
so it's give me error when i start to run the apps..
is anybody get solve this problem??
or anyone can tell me another light xml parser??
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
iOS5 仍处于 NDA 状态。
但根据 LLVM 项目文档,您可以看到可以使用 -fno-objc-arc 关闭项目中特定文件的 ARC
请参阅 ARC 上的 LLVM 文档
但是,正如 @Abizern 所建议的,您应该在 Apple 的开发者论坛上提问。
iOS5 is still under NDA.
But per the LLVM project docs, you can see that you can turn off ARC for specific files in your project with -fno-objc-arc
See LLVM docs on ARC
But, as @Abizern suggests, you should ask this on Apple's Developer forums instead.