iOS使用URL方案打印pdf

时间:2014-04-07 09:41:16

标签: ios url-scheme

我想要打印pdf文件,我已经使用 airPrint 但我的打印机不受支持。 我的问题是: Hp eprint 等应用支持网址方案?我想使用第三方应用程序来打印我的pdf。

1 个答案:

答案 0 :(得分:0)

解决方案是简单地让UIDocumentController为我做这件事:

self.documentController =[UIDocumentInteractionController interactionControllerWithURL:[NSURL fileURLWithPath:filePath]];
self.documentController.delegate = self;
self.documentController.UTI = @"com.adobe.pdf";
CGRect rect = CGRectMake(0, 0, 0, 0);
[self.documentController presentOpenInMenuFromRect:rect inView:self.view animated:YES];

当然必须安装Hp电子打印或其他第三个应用程序。