更改GDataXML中的版本

时间:2013-08-07 07:57:55

标签: iphone ios xcode4 gdataxml

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

1 个答案:

答案 0 :(得分: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;