4

我正在使用 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/" >
< bar1 > xxxx </bar1 >
< bar2 > xxxx </bar2 >
< bar3 > xxxx </bar3 >
< bar4 > xxxx </bar4>
</Foo>

感谢帮助 !

4

1 回答 1

7

我找到了一个解决方案:

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

我希望这会有所帮助=)

于 2011-07-20T07:40:09.533 回答