当我按照本教程http://www.raywenderlich.com/725/xml-tutorial-for-ios-how-to-read-and-write-xml-documents-with-gdataxml使用 GDataXML 生成 XML 并保存到文档文件夹。从文档文件夹中打开该文件后,它的 xml 版本 =“1.0”。我想将 xml 版本更改为 2.0。请提供任何更改版本的建议。
问问题
79 次
1 回答
1
在教程中,你有这个,对吧?
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;
于 2013-11-06T05:29:01.030 回答