Step 1: Start Xcode and make a New Project – Select View-based Application – I call it AirPrinting. Add an image to your project – I added demo.png – Here is the image Step 2: Go to AirPrintingViewController.h and add the following code #import <UIKit/UIKit.h> @interface AirPrintingViewController : UIViewController <UIPrintInteractionControllerDelegate>{ } -(void)printItem; @end Next in AirPrinti