Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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];

Subviews from bottom to top

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;

Subviews in correct order

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.

Correct order but at bottom of page

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.

share|improve this question
It looks like this is a problem with the layout, rather than the order of the printing. How do you add the views to your print view? Do you call -setFrame:? Is Auto Layout turned on? – noa Dec 29 '12 at 23:01
Yes I am using Auto Layout. All the subviews are added in the XIB, except for adding the printview itself to a parent for testing. I did a search to be sure but nowhere do I set the frame manually. – nephilim Dec 30 '12 at 10:58

1 Answer

It sounds like you have ambiguous layout, meaning your nib doesn't have enough constraints to ensure the subviews appear where you want them. The two layouts you're seeing both satisfy the constraints, so you need to constrain more aspects of the layout so the subviews appear just where you want them.

Judging from the two images you posted of your layout, I'd suggest you try:

  1. Pinning the top of your top view to the top of the container
  2. Pinning the vertical spacing between your top and bottom views

Added: I just downloaded your .xib and it's clear that you are constraining the top subview to the top of the view, and the vertical spacing of the subviews, down the page. So that won't fix the problem. Is the height variable? If not, try constraining the height of the container. Why are you enclosing the text and image fields in NSViews? It might be simpler to take them out. (You aren't getting log messages about unsatisfiable constraints, right?)

This WWDC video, Introduction to Auto Layout gave the best explanation of ambiguous layout I've seen.

For debugging purposes, you could add the view to a window and then work with the Auto Layout which this good answer describes.

Alternatively, you could just turn off Auto Layout for this nib. Since your view is simple, you can manage the layout easily enough the old way, with springs and struts.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.