Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试创建一个空白 CSV 文件,然后使用 CHCSVWriter 对其进行写入,但我没有在库中看到创建没有内容的新文件的方法。我可以使用 iOS 级别的东西来执行此操作吗?
你有没有尝试过
NSString *content = @"content here"; NSData *fileContents = [content dataUsingEncoding:NSUTF8StringEncoding]; [[NSFileManager defaultManager] createFileAtPath:@"/my/path/to/file.csv" contents:fileContents attributes:nil];
如果你想要一个空白文件,请尝试设置contents:nil
contents:nil