GDataXML 使用 xmlns 命名空间写入文件

发布于 2024-11-25 04:08:06 字数 589 浏览 3 评论 0原文

我正在使用 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 技术交流群。

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

发布评论

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

评论(1

迷迭香的记忆 2024-12-02 04:08:06

我找到了一个解决方案:

GDataXMLElement *FooElement = [GDataXMLNode elementWithName:@"Foo"];
NSArray *namespaces = [[NSArray alloc] 
      initWithObjects:[GDataXMLNode namespaceWithName:nil    
      stringValue:@"https://foo/bar/"], nil];
[FooElement setNamespaces:namespaces];

我希望这会有所帮助=)

i found a solution:

GDataXMLElement *FooElement = [GDataXMLNode elementWithName:@"Foo"];
NSArray *namespaces = [[NSArray alloc] 
      initWithObjects:[GDataXMLNode namespaceWithName:nil    
      stringValue:@"https://foo/bar/"], nil];
[FooElement setNamespaces:namespaces];

I hope this will help =)

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