Objective C、NSXML 解析器委托方法在 4.3 更新后不起作用
在我更新iOS4.3之前它运行得很好 之后,NSXML 解析器的委托方法永远不会被调用...... 有人遇到这个问题吗?
It worked just fine before I updated iOS4.3
After that, the delegate methods for NSXML parser never get called...
Is there anyone having this problem?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我解决了我的问题:我正在解析一个本地 XML 文件,由于某种原因,这个 XML 文件在我升级到 Xcode 4 的过程中从我的项目中消失了。这对于在我的 iPhone 上进行测试没有问题,我认为它被缓存在某个地方,所以该文件确实存在仍然存在并且可以被解析。但模拟器无法再找到它,因此解析委托方法没有被调用。
(如果您正在网络上的某个位置解析 XML 文件,您应该检查您的互联网连接)
I solved my problem: I am parsing a local XML file and fore some reason this XML file disappeared from my project during my upgrade to Xcode 4. This was no problem for testing on my iPhone, i think it was cached somewhere so the file did still exist and could be parsed. But the simulator couldn't find it anymore so the parsing delegate methods didn't get called..
(If you are parsing an XML file somewhere on the web, you should check your internet connections)