문제

I want to print a pdf file, I have already use airPrint but my printer is not supported. My question is : An application like Hp eprint support the url scheme? I want to use a third party Application to print my pdf.

도움이 되었습니까?

해결책

The solution was to simply let UIDocumentController do it for me:

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];

Of course Hp e-print or an other third application must be installed.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top