nsprintoperation

Printing an NSDocument

I'm trying to print a document. The document is an array of NSImageReps, or a single NSPDFImageRep, which has multiple pages. I'm having trouble figuring out how to use the NSPrintOperation class to print this. The NSPrintOperation seems to need an NSView to print. Do I need to manually add each image into the view at a calculated pos...

NSPrintOperation hangs application

I have an application that hangs whenever I call NSPrintOperation. I have a view that is creates a separate class (UIView) like this: PBPrintImage *printImage = [[PBPrintImage alloc] init]; printImage.image = finalImage; [printImage printWithNoPanel:self]; Then inside PBPrintImage I have the following method: - (void)printWithNoPane...