简体   繁体   中英

How to Print Word Documents Using uiprintinteractioncontroller class

Need some help. I am able to print pdf & images directly but need to print document pr ppt files. Please help me out Thanks in advance.

You don't need to convert any format to PDF before printing. Simply set the printing data & present the menu.

[UIPrintInteractionController sharedPrintController].printingItem = [NSData dataWithContentsOfURL:self.url]; //url of your word doc

[[UIPrintInteractionController sharedPrintController] presentAnimated:YES completionHandler:nil];

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM