我正在尝试创建一个 csv 并通过电子邮件发送。我创建了一个 NSArray 的 NSMutableArray(称为 csvArray),使用 Dave DeLong 的 CHCSVParser:
[csvArray writeToCSVFile:filenameCSV atomically:YES];
然后,感谢 MFMailComposeViewController,我可以将此 csv 文件作为附件发送到电子邮件中,但第一次发送电子邮件时,我可以在调试器控制台中阅读此内容(添加收件人时会出现):
DA|Could not open the lock file at /tmp/DAAccountsLoading.lock. We'll load the accounts anyway, but bad things may happen
编辑
如果我不附加任何文件,也会出现此消息。
Dave DeLong 的 CHCSVParser 完美运行。
有没有人使用 MFMailComposeViewController 遇到过这样的消息?