如何防止 NSXMLParser 在遇到版权符号时退出?

发布于 2024-11-26 11:23:46 字数 116 浏览 0 评论 0原文

我正在尝试使用 NSXMLParser 来处理 XML 文档。但是,当节点将 ® 作为元素值时,解析器将使用 parserDidEndDocument 委托方法退出。

如何防止遇到 ® 符号时解析退出?

I'm trying to use NSXMLParser to deal with an XML document. However, when a node has ® as an element value, the parser quits by using the parserDidEndDocument delegate method.

How can I prevent parsing from quitting when an ® symbol is encountered?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

桃酥萝莉 2024-12-03 11:23:46

我建议做三件事:

  • 在此处发布 xml 文件示例,以便其他人可以测试它
  • 尝试定义委托的方法 parser:parseErrorOccurred: 并查看是否报告了任何错误
  • 尝试将文件编码更改为 UTF -8 这样:

    
    

I would suggest 3 things:

  • Post here xml file example, so other people could test it
  • Try to define delegate's method parser:parseErrorOccurred: and see are any errors reported
  • Try to change file encoding to UTF-8 like that:

    <?xml version="1.0" encoding="utf-8"?>
    
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文