WKWebview 打开本地PDF文件

    WKWebView* webView = [[WKWebView alloc] initWithFrame:frame];

    webView.backgroundColor = [UIColor whiteColor];

    [self.view addSubview:webView];


    NSURL *filePath = [NSURL fileURLWithPath:self.billFile];//注意了,本地文件不能用URLWithString,会显示失败

    [webViewloadRequest:[NSURLRequest requestWithURL:filePath]];

你可能感兴趣的:(WKWebview 打开本地PDF文件)