ios webView 无签章问题 URL中文路径问题
2019-11-23 本文已影响0人
木子李55
//** 加载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];