iOS 4.2 - Printing DOC, PPT, XLS, etc. with Apple AirPrint?

后端 未结 2 759
暗喜
暗喜 2021-02-02 04:58

I\'ve been playing with iOS 4.2 UIWebView + AirPrint. The problem, however, is that getting the viewPrintFormatter from the UIWebView I\'m able to print PDF and images, but not

相关标签:
2条回答
  • 2021-02-02 05:02

    Thanks, I follow your hint and it work now. Using loadRequest instead:

    [internalWebView loadRequest:[NSURLRequest requestWithURL:[NSURL fileURLWithPath:path]]];
    
    0 讨论(0)
  • 2021-02-02 05:21

    I found how to fix it, for some reason if I don't use the mime type it works. I just saved the file to the local storage and used the other load method for the webview that loads the content based only on an URL. Hope it helps...

    0 讨论(0)
提交回复
热议问题