0

我不知道如何使用 GDataXML 创建 XML 文档,也找不到任何可以帮助我的好链接。请告诉我如何执行此操作或提供一些好的链接。

4

2 回答 2

0

看看http://www.raywenderlich.com/725/how-to-read-and-write-xml-documents-with-gdataxml教程。它会帮助你。

于 2012-11-08T06:43:28.270 回答
0

首先创建 xml 值并将其存储到字符串中。然后使用下面的方法在文档目录下创建xml文件。

//方法将字符串写入xml文件

-(void) writeToXMLFile:(NSString *)content
{

    //get the documents directory:
    NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
    NSString *documentsDirectory = [paths objectAtIndex:0];

   //make a file name to write the data to using the documents directory:
   NSString *fileName = [NSString stringWithFormat:@"%@/xmlfile.xml",documentsDirectory];

   //save content to the documents directory
   [content writeToFile:fileName atomically:NO encoding:NSStringEncodingConversionAllowLossy error:nil];

}
于 2012-11-08T08:44:31.663 回答