我正在通过以下链接创建 PDF 页面...
http://mobile.tutsplus.com/tutorials/iphone/generating-pdf-documents/?search_index=3
我无法使用以下方法删除此 PDF 文件。我已经评论了错误行...
self.fileMgr = [NSFileManager defaultManager];
NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
NSString *documentsDirectory = [paths objectAtIndex:0];
NSString *pdfPath = [documentsDirectory stringByAppendingPathComponent:[NSString stringWithFormat:@"%@.pdf",[self.tablePdfListArray objectAtIndex:indexPath.row]]];
if([self.fileMgr fileExistsAtPath:pdfPath] == YES)
{
[fileMgr removeFileAtPath: pdfPath error:nil]; //No visible @interface for NSFilemanager declares the selector removeFileAtPath
}
你能建议一下吗?提前致谢。