美文网首页
WKWebview 打开本地PDF文件

WKWebview 打开本地PDF文件

作者: 仗键天涯 | 来源:发表于2020-05-08 16:21 被阅读0次

        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文件

          本文链接:https://www.haomeiwen.com/subject/einfnhtx.html