I'm using [[NSPrintOperation printOperationWithView:drawingView] runOperation];
and I get this view:
There is no option to choose between Landscape or Portrait
I found that I can have [[NSPrintOperation printOperationWithView:drawingView printInfo:info] runOperation];
and set info.orientation = NSPaperOrientationLandscape
. In that case I would get the preview in landscape but the user does not have the option.
How can I offer the option? (note: I don't see it under 'show Details' either)