WKWebView

使用WKWebView 學(xué)習(xí)記錄:

WKWebView 和 Safari瀏覽器一樣 用的是 Nirtro JavaScript 引擎
可以做一些UIWebView你不能做的事情(我遇到的,我用UIWebView 加載H5 其中H5中 調(diào)用手機的相冊和錄制視頻功能,使用沒有反應(yīng),點擊沒有效果咏瑟,后來換成WKWebView 就可以使用是整,我想和它使用JavaScript引擎有關(guān)系吧)
更多相關(guān)內(nèi)容: http://nshipster.cn/wkwebkit/

#define ScreenWidth  [UIScreen mainScreen].bounds.size.width
#define ScreenHeight [UIScreen mainScreen].bounds.size.height

 _webView = [[WKWebView alloc]initWithFrame:CGRectMake(0, 0, ScreenWidth, ScreenHeight)];
      [self.view addSubview:_webView];

   NSURL *url = [NSURL URLWithString:@"https://www.baidu.com/"];
    NSURLRequest *request = [NSURLRequest requestWithURL:url];
    [self.webView loadRequest:request];
    _webView.UIDelegate = self;
    _webView.navigationDelegate = self;
    
    UIBarButtonItem * leftBackItem = [[UIBarButtonItem alloc] initWithTitle:@"Go Back" style:UIBarButtonItemStylePlain target:self action:@selector(leftButtonClick)];
    self.navigationItem.leftBarButtonItem = leftBackItem;


-(void)leftButtonClick{
    if ([self.webView canGoBack]) {
        [self.webView goBack];
    }else{
        NSLog(@"***** 當(dāng)前處理棧頂 ****");
    }
}

//類似UIWebView的 -webViewDidStartLoad:頁面開始加載時調(diào)用
- (void)webView:(WKWebView *)webView didStartProvisionalNavigation:(WKNavigation *)navigation{
    NSLog(@"*****  頁面開始加載 *****");
}
// 當(dāng)內(nèi)容開始返回時調(diào)用
- (void)webView:(WKWebView *)webView didCommitNavigation:(WKNavigation *)navigation{
    
    NSLog(@"***** 服務(wù)器開始返回內(nèi)容 *****");
    
}
// 頁面加載完成之后調(diào)用
- (void)webView:(WKWebView *)webView didFinishNavigation:(WKNavigation *)navigation{
    //頁面加載完成 后將navigationBar的標(biāo)題修改成 網(wǎng)頁的標(biāo)題
    if(webView.title && webView.title.length > 0) {
        self.title= webView.title;
    }
}
// 類似 UIWebView 的- webView:didFailLoadWithError:頁面加載失敗時調(diào)用
- (void)webView:(WKWebView *)webView didFailProvisionalNavigation:(WKNavigation *)navigation{
    NSLog(@"***** 加載網(wǎng)頁失敗,網(wǎng)絡(luò)故障! *****");
}
// 接收到服務(wù)器跳轉(zhuǎn)請求之后再執(zhí)行
- (void)webView:(WKWebView *)webView didReceiveServerRedirectForProvisionalNavigation:(WKNavigation *)navigation{
    NSLog(@"***** 接收到服務(wù)器跳轉(zhuǎn)請求之后再執(zhí)行 *****");
}
// 在收到響應(yīng)后吵瞻,決定是否跳轉(zhuǎn)
- (void)webView:(WKWebView *)webView decidePolicyForNavigationResponse:(WKNavigationResponse *)navigationResponse decisionHandler:(void (^)(WKNavigationResponsePolicy))decisionHandler{
    NSLog(@"*****  收到服務(wù)器響應(yīng)理疙,是否跳轉(zhuǎn) *****");
    /*
     WKNavigationResponsePolicyCancel,//不同意跳轉(zhuǎn)
     WKNavigationResponsePolicyAllow,//同意跳轉(zhuǎn)
     */
    decisionHandler(WKNavigationResponsePolicyAllow);
}
// 在發(fā)送請求之前,決定是否跳轉(zhuǎn)
- (void)webView:(WKWebView *)webView decidePolicyForNavigationAction:(WKNavigationAction *)navigationAction decisionHandler:(void (^)(WKNavigationActionPolicy))decisionHandler{
    
    NSString *urlString = [[navigationAction.request URL] absoluteString];
    urlString = [urlString stringByRemovingPercentEncoding];
    
    NSLog(@"Requset URL = %@",urlString);
    // 用'://'截取字符串
    NSArray *urlComps = [urlString componentsSeparatedByString:@"://"];
    if ([urlComps count]) {
        // 獲取協(xié)議頭
        NSString *protocolHead = [urlComps objectAtIndex:0];
        NSLog(@"Protocol Header = %@",protocolHead);
    }
    
    /*
     WKNavigationResponsePolicyCancel,//不同意跳轉(zhuǎn)
     WKNavigationResponsePolicyAllow,//同意跳轉(zhuǎn)
     */
    decisionHandler(WKNavigationActionPolicyAllow);

}
//1.創(chuàng)建一個新的WebVeiw
- (nullable WKWebView *)webView:(WKWebView *)webView createWebViewWithConfiguration:(WKWebViewConfiguration *)configuration forNavigationAction:(WKNavigationAction *)navigationAction windowFeatures:(WKWindowFeatures *)windowFeatures{
    WKFrameInfo *frameInfo = navigationAction.targetFrame;
    if (![frameInfo isMainFrame]) {
        [webView loadRequest:navigationAction.request];
    }
    return nil;
}
//2.WebVeiw關(guān)閉(9.0中的新方法)
- (void)webViewDidClose:(WKWebView *)webView{
    NSLog(@"%s",__func__);
}
//3.顯示一個JS的Alert(與JS交互)
- (void)webView:(WKWebView *)webView runJavaScriptAlertPanelWithMessage:(NSString *)message initiatedByFrame:(WKFrameInfo *)frame completionHandler:(void (^)(void))completionHandler{
    // js 里面的alert實現(xiàn)催植,如果不實現(xiàn),網(wǎng)頁的alert函數(shù)無效
    UIAlertController *alertController = [UIAlertController alertControllerWithTitle:message  message:nil preferredStyle:UIAlertControllerStyleAlert];
    
    [alertController addAction:[UIAlertAction actionWithTitle:@"確定" style:UIAlertActionStyleCancel handler:^(UIAlertAction *action){
        completionHandler();
    }]];
    
    [self presentViewController:alertController animated:YES completion:nil];
}
//4.彈出一個輸入框(與JS交互的)
- (void)webView:(WKWebView *)webView runJavaScriptTextInputPanelWithPrompt:(NSString *)prompt defaultText:(nullable NSString *)defaultText initiatedByFrame:(WKFrameInfo *)frame completionHandler:(void (^)(NSString * __nullable result))completionHandler{
    
   completionHandler(@"Client Not handler");
    
}
//5.顯示一個確認框(JS的)
- (void)webView:(WKWebView *)webView runJavaScriptConfirmPanelWithMessage:(NSString *)message initiatedByFrame:(WKFrameInfo *)frame completionHandler:(void (^)(BOOL result))completionHandler{
    
    UIAlertController *alertCtl = [UIAlertController alertControllerWithTitle:message message:nil preferredStyle:UIAlertControllerStyleAlert];
    
    [alertCtl addAction:[UIAlertAction actionWithTitle:@"確定" style:UIAlertActionStyleDefault handler:^(UIAlertAction*action){
         completionHandler(YES);
    }]];
    
    [alertCtl addAction:[UIAlertAction actionWithTitle:@"取消" style:UIAlertActionStyleCancel  handler:^(UIAlertAction*action){
        completionHandler(NO);
    }]];
    
    [self presentViewController:alertCtl animated:YES completion:nil];
}

上面的全是WKWebView的代理方法

值得一提的是

//1.創(chuàng)建一個新的WebVeiw
- (nullable WKWebView *)webView:(WKWebView *)webView createWebViewWithConfiguration:(WKWebViewConfiguration *)configuration forNavigationAction:(WKNavigationAction *)navigationAction windowFeatures:(WKWindowFeatures *)windowFeatures{
    WKFrameInfo *frameInfo = navigationAction.targetFrame;
    if (![frameInfo isMainFrame]) {
        [webView loadRequest:navigationAction.request];
    }
    return nil;
}

這個方法在點擊H5頁面中的鏈接 跳轉(zhuǎn)的時候會調(diào)用 最開始的時候 我直接寫
return self.webView
運行 點擊的時候程序直接crash

報錯:
** Terminating app due to uncaught exception 'NSInternalInconsistencyException', reason: 'Returned WKWebView was not created with the given configuration.**

屏幕快照 2016-09-02 下午5.02.29.png

原因呢:
每次點擊H5中的line會跳轉(zhuǎn)一個新網(wǎng)頁勺择,"_black" 是開一個新的頁面 打開網(wǎng)頁,和Safari中點加號一樣创南!
當(dāng)然在應(yīng)用中如果不實現(xiàn)和Safari一樣的效果 那就只能讓其在當(dāng)前頁面中 重新加載一次新link

還有一種解決方法:

-(void)webView:(WKWebView *)webView decidePolicyForNavigationAction:(WKNavigationAction *)navigationAction decisionHandler:(void (^)(WKNavigationActionPolicy))decisionHandler{ 
//如果是跳轉(zhuǎn)一個新頁面
     if (navigationAction.targetFrame == nil) { 
        [webView loadRequest:navigationAction.request]; 
      } 
    decisionHandler(WKNavigationActionPolicyAllow);
}

進度條問題:

[_webView addObserver:self forKeyPath:@"estimatedProgress" options:NSKeyValueObservingOptionNew context:nil];

-(void)observeValueForKeyPath:(NSString *)keyPath ofObject:(id)object change:(NSDictionary<NSString *,id> *)change context:(void *)context{
    if ([keyPath isEqualToString:@"estimatedProgress"]) {
        NSLog(@"new = %@ ;",change[@"new"]);
        self.progressView.progress = [change[@"new"] floatValue];
    }
    if (self.progressView.progress == 0) {
        dispatch_after(dispatch_time(DISPATCH_TIME_NOW, (int64_t)(0.5 * NSEC_PER_SEC)), dispatch_get_main_queue(), ^{
            self.progressView.hidden = YES;

        });
    }
}

不要忘了 移除KVO的監(jiān)聽了!

WKWebView 與js 交互參考 http://www.reibang.com/p/c59dd41c3631

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末省核,一起剝皮案震驚了整個濱河市稿辙,隨后出現(xiàn)的幾起案子,更是在濱河造成了極大的恐慌气忠,老刑警劉巖邻储,帶你破解...
    沈念sama閱讀 211,496評論 6 491
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件赋咽,死亡現(xiàn)場離奇詭異,居然都是意外死亡吨娜,警方通過查閱死者的電腦和手機脓匿,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,187評論 3 385
  • 文/潘曉璐 我一進店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來宦赠,“玉大人陪毡,你說我怎么就攤上這事」磁ぃ” “怎么了毡琉?”我有些...
    開封第一講書人閱讀 157,091評論 0 348
  • 文/不壞的土叔 我叫張陵,是天一觀的道長尺借。 經(jīng)常有香客問我绊起,道長,這世上最難降的妖魔是什么燎斩? 我笑而不...
    開封第一講書人閱讀 56,458評論 1 283
  • 正文 為了忘掉前任虱歪,我火速辦了婚禮,結(jié)果婚禮上栅表,老公的妹妹穿的比我還像新娘笋鄙。我一直安慰自己,他們只是感情好怪瓶,可當(dāng)我...
    茶點故事閱讀 65,542評論 6 385
  • 文/花漫 我一把揭開白布萧落。 她就那樣靜靜地躺著,像睡著了一般洗贰。 火紅的嫁衣襯著肌膚如雪找岖。 梳的紋絲不亂的頭發(fā)上,一...
    開封第一講書人閱讀 49,802評論 1 290
  • 那天敛滋,我揣著相機與錄音许布,去河邊找鬼。 笑死绎晃,一個胖子當(dāng)著我的面吹牛蜜唾,可吹牛的內(nèi)容都是我干的。 我是一名探鬼主播庶艾,決...
    沈念sama閱讀 38,945評論 3 407
  • 文/蒼蘭香墨 我猛地睜開眼袁余,長吁一口氣:“原來是場噩夢啊……” “哼!你這毒婦竟也來了咱揍?” 一聲冷哼從身側(cè)響起颖榜,我...
    開封第一講書人閱讀 37,709評論 0 266
  • 序言:老撾萬榮一對情侶失蹤,失蹤者是張志新(化名)和其女友劉穎,沒想到半個月后朱转,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體蟹地,經(jīng)...
    沈念sama閱讀 44,158評論 1 303
  • 正文 獨居荒郊野嶺守林人離奇死亡,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點故事閱讀 36,502評論 2 327
  • 正文 我和宋清朗相戀三年藤为,在試婚紗的時候發(fā)現(xiàn)自己被綠了怪与。 大學(xué)時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片。...
    茶點故事閱讀 38,637評論 1 340
  • 序言:一個原本活蹦亂跳的男人離奇死亡缅疟,死狀恐怖分别,靈堂內(nèi)的尸體忽然破棺而出,到底是詐尸還是另有隱情存淫,我是刑警寧澤耘斩,帶...
    沈念sama閱讀 34,300評論 4 329
  • 正文 年R本政府宣布,位于F島的核電站桅咆,受9級特大地震影響括授,放射性物質(zhì)發(fā)生泄漏。R本人自食惡果不足惜岩饼,卻給世界環(huán)境...
    茶點故事閱讀 39,911評論 3 313
  • 文/蒙蒙 一荚虚、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧籍茧,春花似錦版述、人聲如沸。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,744評論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽。三九已至吮龄,卻和暖如春俭茧,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背漓帚。 一陣腳步聲響...
    開封第一講書人閱讀 31,982評論 1 266
  • 我被黑心中介騙來泰國打工母债, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留,地道東北人胰默。 一個月前我還...
    沈念sama閱讀 46,344評論 2 360
  • 正文 我出身青樓,卻偏偏與公主長得像漓踢,于是被迫代替她去往敵國和親牵署。 傳聞我的和親對象是個殘疾皇子,可洞房花燭夜當(dāng)晚...
    茶點故事閱讀 43,500評論 2 348

推薦閱讀更多精彩內(nèi)容