Loading Local PDF File Into WebView

后端 未结 3 765
栀梦
栀梦 2021-01-06 07:23

I am attempting to put the following functionality into an iOS app I am writing:

  • Ship a set of PDFs in the resources folder of the project in XCode
  • Co
3条回答
  •  执念已碎
    2021-01-06 08:04

    Are you sure you don't want to let the UIDocumentInteractionController do the heavy lifting for you?

    UIDocumentInteractionController *dc = [UIDocumentInteractionController interactionControllerWithURL:fileURL];
    dc.delegate = self;
    [dc presentPreviewAnimated:YES];
    

提交回复
热议问题