Reputation: 1
I find the Apple documentation difficult to read through. Perhaps someone out there is willing to share some code on how to easily print a JPG or PNG file in iOS 4.2?
Upvotes: 0
Views: 936
Reputation: 55334
There are three basic steps:
NSData
object from your file.UIPrintInfo
object that contains the job specs.UIPrintInteractionController
, which will begin the process.See this article for a code sample.
Upvotes: 1