美文网首页
ios webView 无签章问题 URL中文路径问题

ios webView 无签章问题 URL中文路径问题

作者: 木子李55 | 来源:发表于2019-11-23 01:13 被阅读0次
    //** 加载pdf文档时,WKWebView可以显示签章,UIWebView则不显示。
    
    //    WKWebView *webView = [[WKWebView alloc] initWithFrame:self.view.frame];
    //    [webView loadRequest:[NSURLRequest requestWithURL:[NSURL URLWithString:@"自己的文档路径.pdf"]]];
    //    [self.view addSubview:webView];
        
    //    UIWebView *webView = [[UIWebView alloc] initWithFrame:self.view.frame];
    //    [webView loadRequest:[NSURLRequest requestWithURL:[NSURL URLWithString:@"自己的文档路径.pdf"]]];
    //    [self.view addSubview:webView];
        
        //** URL加载中文路径(正常情况下加载中文URL会为nil,经过下面转换即可正常加载出来)
        // NSString *urlStr = [@"自己的带中文文档路径.pdf" stringByAddingPercentEncodingWithAllowedCharacters:[NSCharacterSet URLFragmentAllowedCharacterSet]];
        // NSURL *url = [NSURL URLWithString:urlStr];
    
    

    相关文章

      网友评论

          本文标题:ios webView 无签章问题 URL中文路径问题

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