一. WebView的基礎(chǔ)用法
- 創(chuàng)建WebView:
self.webView = [[UIWebView alloc]initWithFrame:CGRectMake(15, contentHeaderHeight - 0, SCREEN_WIDTH - 30, 1)];
self.webView.delegate = self;
NSString *url = @“”xxxxxxxxxxxxxxx”;
[self.webView loadRequest:self.requestrequest];
[self.headerBottomView addSubview:self.webView];
- WebView的代理方法:
- (void)webViewDidStartLoad:(UIWebView *)webView; //WebView內(nèi)容即將開始加載
- (void)webViewDidFinishLoad:(UIWebView *)webView; //WebView內(nèi)容加載完成
- (void)webView:(UIWebView *)webView didFailLoadWithError:(NSError *)error; //WebView內(nèi)容加載錯(cuò)誤
?
?
二. 獲取WebView內(nèi)容高度
方法1. 通過(guò)WebView的代理方法獲取內(nèi)容高度
優(yōu)點(diǎn):所有內(nèi)容一次加載完成,直接獲取內(nèi)容的全部高度
缺點(diǎn):當(dāng)內(nèi)容較多時(shí)贯吓,加載速度偏慢懈凹,白屏等待時(shí)間較長(zhǎng),用戶體驗(yàn)差
代碼:
//webview內(nèi)容已加載完畢的方法
- (void)webViewDidFinishLoad:(UIWebView *)webView{
//獲取webview的高度
float height = [[webView stringByEvaluatingJavaScriptFromString:@"document.body.offsetHeight"] floatValue];
//刷新WebView的高度
}
方法2. 通過(guò)KVO獲取WebView內(nèi)容高度
優(yōu)點(diǎn):不會(huì)出現(xiàn)長(zhǎng)時(shí)間白屏等待悄谐,文字先加載出來(lái)介评,然后才加載圖片。
缺點(diǎn):不能夠一次性獲取內(nèi)容的全部高度爬舰,圖片會(huì)一點(diǎn)點(diǎn)加載出來(lái)们陆,等待全部加載完成才可以滑動(dòng)整個(gè)WebView。
代碼:
//首先在WebView初始化的時(shí)候給WebView添加觀察對(duì)象
[self.webView.scrollView addObserver:self forKeyPath:@"contentSize" options:NSKeyValueObservingOptionNew context:nil];
//然后實(shí)現(xiàn)KVO的方法
- (void)observeValueForKeyPath:(NSString *)keyPath ofObject:(id)object change:(NSDictionary *)change context:(void *)context {
//獲取webview的高度
if ([keyPath isEqualToString:@"contentSize"]) {
float height = [[_webView stringByEvaluatingJavaScriptFromString:@"document.body.offsetHeight"] floatValue];
}
}
//dealloc中移除觀察者對(duì)象
[self.webView.scrollView removeObserver:self forKeyPath:@"contentSize"];
?
?
三. 獲取WebView的Cookie
- 配置WebView
UIWebView *webview = [[UIWebView alloc]initWithFrame:CGRectMake(0, 20, self.view.frame.size.width, self.view.frame.size.height-20)];
NSURL *url = [NSURL URLWithString:@”xxxxxxxxxxxxxxx”];
NSURLRequest *request = [NSURLRequest requestWithURL:url];
[webview loadRequest:request];
[self.view addSubview:webview];
- 拿到WebView頁(yè)面的Cookie
NSHTTPCookieStorage *sharedHTTPCookieStorage = [NSHTTPCookieStorage sharedHTTPCookieStorage];
NSArray *cookies = [sharedHTTPCookieStorage cookiesForURL:[NSURL URLWithString:@”xxxxxxxxxxxxxxx”];
NSEnumerator *enumerator = [cookies objectEnumerator];
for (NSHTTPCookie *cookie in enumerator)
{
if ([[cookie name] isEqualToString:@"PHPSESSID"])
{
[UserManager shraeUserManager].user.PHPSESSID = [cookie value];
}
}
- 刪除WebView頁(yè)面的Cookie
NSHTTPCookieStorage *cookieJar = [NSHTTPCookieStorage sharedHTTPCookieStorage];
NSArray *tmpArray = [NSArray arrayWithArray:[cookieJar cookies]];
for (id obj in tmpArray)
{
[cookieJar deleteCookie:obj];
}
?
?
四. WebView和JS進(jìn)行交互
- 需要前端和后端約束好交互條件
// js調(diào)用前端方法(點(diǎn)擊js中的圖片獲取圖片URL和相關(guān)信息)
JSContext *context = [self.webView valueForKeyPath:@"documentView.webView.mainFrame.javaScriptContext"];
// ForunIos就是和后臺(tái)約束好的字段
context[@"ForumIos"] = ^() {
// args里面就是js返回給前臺(tái)的信息
NSArray *args = [JSContext currentArguments];
[ ForumNotificationCenter postNotificationName:@"browseImageNotificationName" object:[NSString stringWithFormat:@"%@",args[1]]];
};