Prateek Chaubey
Prateek Chaubey

Reputation: 645

Print controller does not appear

I am working on an application for iPad. I am using Xcode 3.2.6. Earlier I had ios 4.2 in my iPad. Now I have upgraded it to 5.0. I have implemented print functionality in my app. When I was using ios 4.2 the print functionality was working fine in iPad, but after upgrading it to ios 5.0, the print controller does not appear. This is making me mad. I can't figure out why this is happening. Can any one help me regarding this problem?

Regards

PC

Upvotes: 0

Views: 242

Answers (1)

BGS
BGS

Reputation: 1440

Use present from Bar Button on iPad:

[printController presentFromBarButtonItem:YourPrintButton animated:YES completionHandler:YourCompletionHandler];

on iPhone it does not matter.

B

Upvotes: 1

Related Questions