我需要使用Cocoa和Objective c在pdf文件中转换html文件。我在Stackoverflow中找到了一些例子,但都是针对iPhone而不是针对Cocoa,所以我无法用它们来完成。 如果有人可以给我一些代码来完成这项任务,或者至少给我一些关于如何做的线索。 谢谢你的帮助
答案 0 :(得分:4)
NSString *fileName = [NSString stringWithFormat:@"%@/mypdf.pdf", documentsDirectory];
NSData *pdfFinal = [[[[webView mainFrame] frameView] documentView] dataWithPDFInsideRect:[[[webView mainFrame] frameView] documentView].frame];
PDFDocument *doc = [[PDFDocument alloc] initWithData:pdfFinal];
[doc writeToFile:fileName];