是否可以使用XML
在iPad上创建Objective-C
文件?
让我解释一下,我连接到一个数据库,它返回一个XML
文件,我必须在iPad上创建的XML
文件中写这个内容。
编辑:
以下是我创建.txt file
的代码,但我在文档中找不到它。
NSError *error;
//get the documents directory:
NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
NSString *documentsDirectory = [paths objectAtIndex:0];
//NSString *documentsDirectory = [NSHomeDirectory() stringByAppendingPathComponent:@"Documents"];
//make a file name to write the data to using the documents directory:
NSString *fileName = [NSString stringWithFormat:@"%@/textFile.txt", documentsDirectory];
//create content - four lines of text
NSString *content = serverOutput;
//save content to the documents directory
/*[content writeToFile:fileName atomically:NO];*/
[content writeToFile:fileName atomically:YES encoding:NSUTF8StringEncoding error:&error];
我做错了吗?