Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm using UIPrintInteractionController presenting it from rect.

UIPrintInteractionController *controller = [UIPrintInteractionController 
                                                        sharedPrintController];
// than set printing settings
...
if (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPad)
    [controller presentFromRect:rect inView:view animated:YES 
                                          completionHandler:completionHandler];

Than I set number of pages (>1) and select a printer. Before devices rotation I call

[controller dismissAnimated:animated];

according to Xcode documentation: You should dismiss the printing options when they are presented in a sheet or animated from a rectangle and the user changes the orientation of the device.

When I present UIPrintInteractionController after rotation, the number of printing copies is set back to 1 (as in initial view), whereas printer remains selected. Ivar _copies of UIPrintInfo is private, so I can't get it and store during rotation.

How can I restore the number of printing pages after rotation?

share|improve this question
why you dismissing it on rotation? – NeverBe Nov 5 '12 at 15:45
3  
@NeverBe because Apple recommends to do it in description of dismissAnimated: method of UIPrintInteractionController class. "You should dismiss the printing options when they are presented in a sheet or animated from a rectangle and the user changes the orientation of the device." and "You should then present the printing options again once the new orientation takes effect." – Anastasia Nov 5 '12 at 15:53
Here's a link to UIPrintInteractionController class. – Anastasia Nov 5 '12 at 16:18
Ever figure out an answer to this? – Ryan Poolos Jan 31 at 1:52
@RyanPoolos Still not, have you got any ideas? – Anastasia Jan 31 at 21:53
show 2 more comments

1 Answer

Can you try using QuickLook Framework for this? This scenario is working fine when I use QuickLook Framework.

A tutorial here

QuickLook

-anoop

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.