I'm trying to print (to PDF) an NSView which is not shown on screen and does not have a parent view.
To show the print dialog I have added the following line to my app delegate's applicationDidFinishLaunching::
[myPrintView print:self];

In the print dialog's preview the subviews are show bottom up. The bottom subview is shown first, then the one which should be above the bottom view etc and the top subview is shown last.
When I add the print view to a scroll view, making it be shown on screen prior to the print call, the order is correct both in the scroll view and the print preview.
self.scrollView.documentView = myPrintView;

My I change my print view to not be flipped, it is shown in the correct order in both situations, but it's put on the bottom of the paper.

How can I resolve this? Keep it flipped and solve the incorrect order, or keep flipped = NO and use a different method to stick it to the top of the page?
I've added my project to https://bitbucket.org/bpeiren/print-experiments, in case that helps.
-setFrame:? Is Auto Layout turned on? – noa Dec 29 '12 at 23:01