Hi I've been trying to achieve this with no success
I'm trying to take the following code and view it using Quartz 2D - So I could later annotate using this:
$
NSString *path = [[NSBundle mainBundle] pathForResource:@"01renalArtery" ofType:@"pdf"];
NSURL *url = [NSURL fileURLWithPath:path];
NSURLRequest *request = [NSURLRequest requestWithURL:url];
[pdfView loadRequest:request];
[pdfView setScalesPageToFit:YES];
$
I've been through the following sample code https://developer.apple.com/library/mac/#documentation/graphicsimaging/conceptual/drawingwithquartz2d/dq_pdf/dq_pdf.html#//apple_ref/doc/uid/TP30001066-CH214-TPXREF101 kept coming back with tons of errors
And this Rendered a blank screeen Writing text to a PDF via from an NSString
Any help is very appreciated