1.基本方法:
- (void)loadRequest:(NSURLRequest *)request;
- (void)loadHTMLString:(NSString *)string baseURL:(nullableNSURL *)baseURL;
2.代理方法 - (BOOL)webView:(UIWebView *)webView shouldStartLoadWithRequest:(NSURLRequest *)request navigationType:(UIWebViewNavigationType)navigationType
/**
* 作用:一般用来拦截webView发出的所有请求(加载新的网页)
* 每当webView即将发送一个请求之前,会先调用这个方法
*
* @param request 即将要发送的请求
*
* @return YES :允许发送这个请求 NO:不允许发送这个请求,禁止加载这个请求
*/
//功能:拦截加载百度
- (BOOL)webView:(UIWebView *)webView shouldStartLoadWithRequest:(NSURLRequest *)request navigationType:(UIWebViewNavigationType)navigationType
{
// 如果在path中找不到@“baidu”这个字符串
// [path rangeOfString:@"baidu"].length == 0;
// [path rangeOfString:@"baidu"].location == NSNotFound
// URL格式:协议头://主机名/路径
// request.URL.path :获得的仅仅是主机名(域名)后面的路径
// request.URL.absoluteString:获得的是一个完整的URL字符串
// 1.获得完整的url字符串
NSString *url = request.URL.absoluteString;
NSUInteger loc = [urlrangeOfString:@"baidu"].location;
// [url rangeOfString:@"baidu"].length
// 2.找到baidu字符串,返回NO
if (loc !=NSNotFound) {//能找到
returnNO;//禁止加载
}
// 3.如果没有找到,返回YES
returnYES;
// return loc == NSNotFound ? YES : NO;
// return loc == NSNotFound;
}
//如果是点击了webView里面的链接,在即将加载这个链接的时候就会调用这个代理方法
-(BOOL)webView:(UIWebView *)webView shouldStartLoadWithRequest:(NSURLRequest *)request navigationType:(UIWebViewNavigationType)navigationType
{
NSURL *requestURL =[requestURL];
if ([[requestURLscheme]isEqualToString:@"http"]) {
//可以在这里面做想要做的事情,比如执行下面的代码
[selfperformSegueWithIdentifier:@"xxxx2xxxx"sender:nil];
}
returnYES;
}
其余代理方法
- (void)webViewDidStartLoad:(UIWebView *)webView;
- (void)webViewDidFinishLoad:(UIWebView *)webView;
- (void)webView:(UIWebView *)webView didFailLoadWithError:(nullableNSError *)error
3.加载本地资源
比如加载本地的 名为 hello.html 的文件就可以用下面的代码
NSString *HTMLfile = [[NSBundle mainBundle] pathForResource:@"hello" ofType:@"html"];
NSString * content = [NSString stringWithContentsOfFile:HTMLfile encoding:NSUTF8StringEncoding error:nil];
[self.WebView loadHTMLString:content baseURL:nil];
或者
NSURL *url = [[NSBundle mainBundle] URLForResource:@"hello" withExtension:@"html"];
NSURLRequest *request = [NSURLRequest requestWithURL:url];
// 根据请求去加载对应的资源
[self.webView loadRequest:request];