抑制 nsxmlparser 上的名称空间前缀
我的 xml 数据有这种格式的节点。我想抑制前缀,也就是说,当我在 nsxmlparser 的委托方法中提取元素名称时,它不应该返回为“yyy”而不是“xxx:yyy”
我尝试这样做,
[parser setDelegate:self];
[parser setShouldProcessNamespaces:NO];
[parser setShouldReportNamespacePrefixes:NO];
此代码没有任何效果。必须做什么?
my xml data has nodes in this format . I want to suppress the prefixes, that is when i pull the element name in nsxmlparser's delegate method it should not return as "yyy" and not as "xxx:yyy"
I tries to do this
[parser setDelegate:self];
[parser setShouldProcessNamespaces:NO];
[parser setShouldReportNamespacePrefixes:NO];
this code did not had any effect. what has to be done?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我得到了它 。 。应该将第二行更改为
是的。
i got it . . should change the 2nd line to
YES.
在你中
你可能可以使用
In your
you can probably use