美文网首页
iOS WKWebview打开PDF和网页

iOS WKWebview打开PDF和网页

作者: zxb有缘 | 来源:发表于2021-07-23 16:57 被阅读0次

    //打开PDF
    WKWebView *web = [[WKWebView alloc] initWithFrame:CGRectMake(0, 0, kScreen_Width, kScreen_Height-kHTMI_NavigationBarHeight-kHTMI_MoreTabBarHeight)];
    web.backgroundColor = [UIColor whiteColor];
    [self.view addSubview:web];
    NSURL *url = [NSURL fileURLWithPath:self.pdfFilePath];
    [web loadFileURL:url allowingReadAccessToURL:[url URLByDeletingLastPathComponent]];

    //打开网页
    WKWebView web = [[WKWebView alloc] initWithFrame:CGRectMake(0, 0, kScreen_Width, kScreen_Height-kHTMI_NavigationBarHeight-kHTMI_MoreTabBarHeight)];
    web.backgroundColor = [UIColor whiteColor];
    [self.view addSubview:web];
    /
    加载服务器url的方法*/
    NSString *url = @"https://www.baidu.com";
    NSURLRequest *request = [NSURLRequest requestWithURL:[NSURL URLWithString:url]];
    [webview loadRequest:request];

    相关文章

      网友评论

          本文标题:iOS WKWebview打开PDF和网页

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