使用GDataXML创建XML文档

时间:2012-11-08 06:41:42

标签: iphone objective-c ios xml ios5

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

2 个答案:

答案 0 :(得分:0)

答案 1 :(得分:0)

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

// Method将字符串写入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];

}