ios XML 解析:在某些设备上 Error Domain=NSXMLParserErrorDomain Code=76
在解析 XML Feed 时,我在一台特定 iPhone 4 设备上的应用程序中遇到此错误:
error parsing XML: Error Domain=NSXMLParserErrorDomain Code=76
我无法确定为什么它发生在该特定设备上而不是其他设备上:这是相同的 feed。源 XML 结构中没有 XML 错误,并且所有设备都具有相同的全局常规设置。
根据文档,错误 76 是 NSXMLParserTagNameMismatchError。
I get this error in my app on one specific iPhone 4 device while parsing an XML Feed:
error parsing XML: Error Domain=NSXMLParserErrorDomain Code=76
I am not able to determine why it's happening on this particular device and not others: this is the same feed. There are no XML errors in the feed XML structure and all devices have the same global general settings.
According to the docs, Error 76 is NSXMLParserTagNameMismatchError
.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您的 xml 可能不一致。根据 http://validator.w3.org/#validate_by_input 进行验证
Your xml may be inconsistent. Validate it against http://validator.w3.org/#validate_by_input
将您的 xml 剪切并粘贴到此处进行验证。错误消息非常可靠。
Cut and paste your xml here to validate. The error messages are pretty solid.
当结束标记与开始标记不匹配时会发生此错误,如下所示:
或
(标记在第一行关闭)
this error happens when the closing tag doesn't match the opening tag, like so:
or
(the tag was closed on the first line)