gpt4 book ai didi

namespaces - 带有 xmlns 命名空间的 GDataXML 写入文件

转载 作者:行者123 更新时间:2023-12-04 01:58:39 26 4
gpt4 key购买 nike

我正在使用 GDataXML,但在编写 XML 文件时遇到了一些问题。
我遵循了 Raywenderlich 的教程,但我必须添加一些命名空间。

例如在此之后:
[FooElement addChild:bar1Element];
[FooElement addChild:bar2Element];
[FooElement addChild:bar3Element];
[FooElement addChild:bar4Element];

我想做这样的事情:
[FooElement addNamespace:@"xmlns="https://foo/bar/"

在文件中得到这个结果:
< 福 xmlns="https://foo/bar/" >
< bar1 > xxxx
xxxx
< bar3 > xxxx
< bar4 > xxxx


感谢帮助 !

最佳答案

我找到了一个解决方案:

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

我希望这会有所帮助 =)

关于namespaces - 带有 xmlns 命名空间的 GDataXML 写入文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6746326/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com