GDataXML 使用 xmlns 命名空间写入文件
我正在使用 GDataXML,但在编写 XML 文件时遇到一些问题。 我遵循 Raywenderlich 的教程,但我必须添加一些命名空间。
例如在此之后:
[FooElement addChild:bar1Element];
[FooElement addChild:bar2Element];
[FooElement addChild:bar3Element];
[FooElement addChild:bar4Element];
我想做这样的事情:
[FooElement addNamespace:@"xmlns="https://foo/bar/"
在文件中获取此结果:
< Foo xmlns="https://foo/bar/">
<条1> xxxx < /栏1>
<条2> xxxx < /栏2>
<条3> xxxx < /栏3>
<栏4> xxxx < /bar4>
< /Foo>
感谢您的帮助!
I'm using GDataXML and I encounter some problems to write a XML file.
I followed Raywenderlich's tutorial but i have to add some namespaces.
for example after this:
[FooElement addChild:bar1Element];
[FooElement addChild:bar2Element];
[FooElement addChild:bar3Element];
[FooElement addChild:bar4Element];
i would like to do something like that:
[FooElement addNamespace:@"xmlns="https://foo/bar/"
to get this result in file:
< Foo xmlns="https://foo/bar/">
< bar1 > xxxx < /bar1 >
< bar2 > xxxx < /bar2 >
< bar3 > xxxx < /bar3 >
< bar4 > xxxx < /bar4 >
< /Foo >
thanks for help !
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我找到了一个解决方案:
我希望这会有所帮助=)
i found a solution:
I hope this will help =)