嗨,我一直在努力实现这一目标,但没有成功
我正在尝试获取以下代码并使用 Quartz 2D 查看它 - 所以我以后可以使用它进行注释:
$
NSString *path = [[NSBundle mainBundle] pathForResource:@"01renalArtery" ofType:@"pdf"];
NSURL *url = [NSURL fileURLWithPath:path];
NSURLRequest *request = [NSURLRequest requestWithURL:url];
[pdfView loadRequest:request];
[pdfView setScalesPageToFit:YES];
$
我已经通过以下示例代码 https://developer.apple.com/library/mac/#documentation/graphicsimaging/conceptual/drawingwithquartz2d/dq_pdf/dq_pdf.html#//apple_ref/doc/uid/TP30001066-CH214- TPXREF101 不断出现大量错误
这呈现了一个空白屏幕 通过 NSString 将文本写入 PDF
非常感谢任何帮助