通过代码创建excel文件

时间:2012-01-04 04:32:18

标签: iphone objective-c ios

我需要通过iPhone中的代码创建excel文件我有两个数组第一个数组包含水果名称,第二个数组包含该水果的图像。我想创建excel文件这样的东西

苹果这里的苹果形象 芒果芒果形象在这里 。 。 。 。 。 。 。 。 。 。 。 。 。 。 。 。 。

类似的东西请帮我创建这个

1 个答案:

答案 0 :(得分:-8)

尝试使用以下代码生成Excel文件:

NSFileManager *fileManager = [NSFileManager defaultManager];
NSString *fullPath = [documentsDirectory stringByAppendingPathComponent:[NSString stringWithFormat:@"%@.xls", @"userdata"]]; //add our file to the path
[fileManager createFileAtPath:fullPath contents:[xlsString dataUsingEncoding:NSUTF8StringEncoding] attributes:nil]; //finally save the path (file)

请记住,这里xlsString是Excel文件的内容。你需要创建xlsString,如果你插入,(逗号)或/ t(制表符)或其他分隔符..它将转到Excel文件中的下一个单元格。对于下一行,在xlsString中使用\ n(新行字符)。