I've been using a couple of methods in an iPad app for over a year now, largely based on apple code available here to display PDF pages nicely - it's worked fine for dozens of different PDFs until now. I just got a bunch of PDFs that appear to be having their colours warped in some way. What Preview/Adobe shows:

And here's what I'm seeing, both in Layer based CGPDFDrawPDFPage() and in an iPad UIWebView (pointing to the file), using simulator:

I am wondering if somehow the PDF is in some weird colorspace (CMYK?), but that wouldn't explain why Preview/Adobe Reader can open it just fine. For reference, this is the sum totality of the display code used in the UIView subclass (note, pdfPage is an instance variable):
// Draw the CGPDFPageRef into the layer at the correct scale.
-(void)drawLayer:(CALayer*)layer inContext:(CGContextRef)context
{
    // from https://stackoverflow.com/questions/3889634/fast-and-lean-pdf-viewer-for-iphone-ipad-ios-tips-and-hints
    CGContextSetInterpolationQuality(context, kCGInterpolationHigh); 
    CGContextSetRenderingIntent(context, kCGRenderingIntentDefault);
    // First fill the background with white.
    CGContextSetRGBFillColor(context, 1.0f, 1.0f, 1.0f, 1.0f);
    CGContextFillRect(context, self.bounds);
    CGContextSaveGState(context);
    // Flip the context so that the PDF page is rendered
    // right side up (all the PDF routines are built for Mac OS X
    // coordinate systems, where Y is upwards.
    // first move the origin down by the full height
    CGContextTranslateCTM(context, 0.0f, self.bounds.size.height);
    // now invert the Y position (scale by -1)
    CGContextScaleCTM(context, 1.0f, -1.0f);
    // Scale the context so that the PDF page is rendered 
    // at the correct size for the zoom level.
    CGContextScaleCTM(context, myScale, myScale);   
    CGContextDrawPDFPage(context, pdfPage);
    CGContextRestoreGState(context);
}
As you can see, we also have been avid readers of Fast and Lean PDF Viewer for iPhone / iPad / iOs - tips and hints?
Any suggestions on how to diagnose what we're seeing, and/or alter the color space (or alter the PDF document? We do have that option too).
 
     
     
     
    