我在 iPhone 的文档目录中生成了一个 pdf。现在我想从这个 pdf 生成字节数组。这是我的代码:
NSString *resourceDocPath = [[NSString alloc] initWithString:[[[[NSBundle mainBundle] resourcePath] stringByDeletingLastPathComponent] stringByAppendingPathComponent:@"Documents"]];
NSString *filePath = [resourceDocPath stringByAppendingPathComponent:@"myPDF.pdf"];
NSData* pdfData =[NSData dataWithContentsOfFile:filePath];
然后怎么办?有什么帮助吗?谢谢....