gpt4 book ai didi

iphone - 更改 GDataXML 中的版本

转载 作者:行者123 更新时间:2023-11-29 13:08:05 25 4
gpt4 key购买 nike

当我按照本教程使用 GDataXML 生成 XML 时 http://www.raywenderlich.com/725/xml-tutorial-for-ios-how-to-read-and-write-xml-documents-with-gdataxml并将其保存到文档文件夹中。从文档文件夹中打开该文件后,它的 xml 版本 =“1.0”。我想将 xml 版本更改为 2.0。请提出任何更改版本的建议。

最佳答案

在教程中,你有这个,对吧?

GDataXMLDocument *document = [[[GDataXMLDocument alloc] 
initWithRootElement:partyElement] autorelease];

要将 xml 文档的版本从“1.0”更改为“2.0”,您可以这样做:

NSString *versionString = @"2.0";
const unsigned char *cVersionString = (const unsigned char*)[versionString cStringUsingEncoding:NSUTF8StringEncoding];
document.rootElement.XMLNode->doc->version = cVersionString;

关于iphone - 更改 GDataXML 中的版本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18097770/

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