WKWebView獲取頁面title和加載進度值

排版樣式可能不是太好 你可以把以下代碼全部復制到一個新的UIViewController里面就行

實現(xiàn)功能弯囊,獲取webview的title和進度值


//? WebCheckViewController.m

//? FamilySchoolPro

//

//? Created by yzq on 15/11/23.

//? Copyright ? 2015年 renxiaoxu. All rights reserved.

//

#import "WebCheckViewController.h"

#import

@interface WebCheckViewController ()

@property (nonatomic, strong) WKWebView *webView;

@property(nonatomic,strong)UIProgressView *progressView;

@end

@implementationWebCheckViewController

- (void)viewDidLoad {

? ? [super viewDidLoad];


? ? self.title=self.mytitle;


? ? if ([self.mytitle isEqualToString:@"聯(lián)系客戶經(jīng)理"]) {

? ? ? ? //? ? ? ? self.webView.dataDetectorTypes = UIDataDetectorTypeNone;

? ? }

? ? UIBarButtonItem *_addressBookItem = [[UIBarButtonItem alloc] initWithImage:[UIImage imageNamed:@"back_bt_icon"] style:UIBarButtonItemStylePlain target:self action:@selector(backBookAction)];


? ? _addressBookItem.imageInsets=UIEdgeInsetsMake(0,0,0,0);


? ? [_addressBookItemsetTitle:@"返回"];


? ? [_addressBookItemsetTintColor:RGB_MD(120,209,97)];


? ? [self.navigationController.navigationBar setTintColor:RGB_MD(120, 209, 97)];


? ? UIBarButtonItem *closeBookItem = [[UIBarButtonItem alloc] initWithTitle:@"關(guān)閉" style:UIBarButtonItemStylePlain target:self action:@selector(closeBookAction)];


? ? NSArray*buttonArray = [[NSArrayalloc]initWithObjects:_addressBookItem,closeBookItem,nil];


? ? self.navigationItem.leftBarButtonItems = buttonArray;


? ? self.webView = [[WKWebView alloc] initWithFrame:self.view.bounds];

? ? [_webView setAutoresizingMask:UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleHeight];

? ? [self.webView setNavigationDelegate:self];

? ? [self.webView setUIDelegate:self];

? ? //? ? [_webView setMultipleTouchEnabled:YES];

? ? //? ? [_webView setAutoresizesSubviews:YES];

? ? [self.webView.scrollView setAlwaysBounceVertical:YES];

? ? // 這行代碼可以是側(cè)滑返回webView的上一級忠蝗,而不是根控制器(*只針對側(cè)滑有效)

? ? //? ? [_webView setAllowsBackForwardNavigationGestures:true];


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

? ? [self.webView addObserver:self forKeyPath:@"title" options:NSKeyValueObservingOptionNew context:NULL];

? ? [self.view insertSubview:self.webView belowSubview:self.progressView];


? ? [self.webView loadRequest:[NSURLRequest requestWithURL:[NSURL URLWithString:self.link]]];


}

-(BOOL)hidesBottomBarWhenPushed{


? ? return YES;

}

//- (WKWebView *)webView{

//? ? if (_webView == nil) {

//? ? ? ? _webView = [[WKWebView alloc] initWithFrame:self.view.bounds];

//? ? ? ? [_webView setAutoresizingMask:UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleHeight];

////? ? ? ? [_webView setNavigationDelegate:self];

//? ? ? ? [_webView setUIDelegate:self];

//? ? ? ? [_webView setMultipleTouchEnabled:YES];

//? ? ? ? [_webView setAutoresizesSubviews:YES];

//? ? ? ? [_webView.scrollView setAlwaysBounceVertical:YES];

//? ? ? ? // 這行代碼可以是側(cè)滑返回webView的上一級,而不是根控制器(*只針對側(cè)滑有效)

//? ? ? ? [_webView setAllowsBackForwardNavigationGestures:true];

//

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

//? ? ? ? [self.view insertSubview:_webView belowSubview:self.progressView];

//? ? }

//? ? return _webView;

//}

- (UIProgressView*)progressView

{

? ? if(!_progressView)

? ? {

? ? ? ? _progressView = [[UIProgressView alloc] initWithFrame:CGRectMake(0, 0, self.view.bounds.size.width, 5)];

? ? ? ? self.progressView.tintColor= [UIColorgreenColor];

? ? ? ? self.progressView.trackTintColor = [UIColor clearColor];

? ? ? ? [self.viewaddSubview:self.progressView];

? ? }

? ? return _progressView;

}

-(void)backBookAction{

? ? if([self.webViewcanGoBack]) {

? ? ? ? [self.webViewgoBack];

? ? }else{

? ? ? ? [self.navigationController popViewControllerAnimated:YES];

? ? }

}

-(void)closeBookAction{


? ? [self.navigationController popViewControllerAnimated:YES];

}

// 記得取消監(jiān)聽

- (void)dealloc {

? ? [self.webView removeObserver:self forKeyPath:@"estimatedProgress"];

? ? [self.webView removeObserver:self forKeyPath:@"title"];

}

#pragma mark - WKNavigationDelegate

// 頁面開始加載時調(diào)用

- (void)webView:(WKWebView*)webView didStartProvisionalNavigation:(WKNavigation*)navigation{


}

// 當內(nèi)容開始返回時調(diào)用

- (void)webView:(WKWebView*)webView didCommitNavigation:(WKNavigation*)navigation{


}

// 頁面加載完成之后調(diào)用

- (void)webView:(WKWebView*)webView didFinishNavigation:(WKNavigation*)navigation{


}

// 頁面加載失敗時調(diào)用

- (void)webView:(WKWebView*)webView didFailProvisionalNavigation:(WKNavigation*)navigation{


? ? [[LoadingAnimation sharedInstance] hideLoadingAnimation];


? ? [PromptAction showErrorPrompt:@"網(wǎng)頁加載失敗..."];


}

// 接收到服務(wù)器跳轉(zhuǎn)請求之后調(diào)用

- (void)webView:(WKWebView*)webView didReceiveServerRedirectForProvisionalNavigation:(WKNavigation*)navigation{


}

// 在收到響應(yīng)后呀潭,決定是否跳轉(zhuǎn)

- (void)webView:(WKWebView*)webView decidePolicyForNavigationResponse:(WKNavigationResponse*)navigationResponse decisionHandler:(void(^)(WKNavigationResponsePolicy))decisionHandler{


? ? NSLog(@"%@",navigationResponse.response.URL.absoluteString);

? ? //允許跳轉(zhuǎn)

? ? decisionHandler(WKNavigationResponsePolicyAllow);

? ? //不允許跳轉(zhuǎn)

? ? //decisionHandler(WKNavigationResponsePolicyCancel);

}

// 在發(fā)送請求之前颖医,決定是否跳轉(zhuǎn)

- (void)webView:(WKWebView*)webView decidePolicyForNavigationAction:(WKNavigationAction*)navigationAction decisionHandler:(void(^)(WKNavigationActionPolicy))decisionHandler{


? ? NSLog(@"%@",navigationAction.request.URL.absoluteString);

? ? /**

?? ? *? 攔截app跳轉(zhuǎn)

?? ? */

? ? NSString*string = navigationAction.request.URL.absoluteString;


? ? if(string.length>24) {

? ? ? ? string = [stringsubstringToIndex:23];//截取掉下標23之后的字符串

? ? }

? ? if ([string isEqualToString:@"http://itunes.apple.com"]) {

? ? ? ? //不允許跳轉(zhuǎn)

? ? ? ? decisionHandler(WKNavigationActionPolicyCancel);

? ? }

? ? //允許跳轉(zhuǎn)

? ? decisionHandler(WKNavigationActionPolicyAllow);

}

// 計算wkWebView進度條

- (void)observeValueForKeyPath:(NSString*)keyPath ofObject:(id)object change:(NSDictionary*)change context:(void*)context {

? ? if(object ==self.webView&& [keyPathisEqualToString:@"estimatedProgress"]) {

? ? ? ? CGFloatnewprogress = [[changeobjectForKey:NSKeyValueChangeNewKey]doubleValue];

? ? ? ? if(newprogress ==1) {

? ? ? ? ? ? self.progressView.hidden=YES;

? ? ? ? ? ? [self.progressViewsetProgress:0animated:NO];

? ? ? ? }else{

? ? ? ? ? ? self.progressView.hidden=NO;

? ? ? ? ? ? [self.progressViewsetProgress:newprogressanimated:YES];

? ? ? ? }

? ? }

? ? //網(wǎng)頁title

? ? elseif([keyPathisEqualToString:@"title"])

? ? {

? ? ? ? if(object ==self.webView)

? ? ? ? {

? ? ? ? ? ? self.title=self.webView.title;

? ? ? ? }

? ? ? ? else

? ? ? ? {

? ? ? ? ? ? [superobserveValueForKeyPath:keyPathofObject:objectchange:changecontext:context];

? ? ? ? }

? ? }

? ? else

? ? {

? ? ? ? [superobserveValueForKeyPath:keyPathofObject:objectchange:changecontext:context];

? ? }

}

-(WKWebView*)webView:(WKWebView*)webView createWebViewWithConfiguration:(WKWebViewConfiguration*)configuration forNavigationAction:(WKNavigationAction*)navigationAction windowFeatures:(WKWindowFeatures*)windowFeatures

{

? ? if(!navigationAction.targetFrame.isMainFrame) {

? ? ? ? [webViewloadRequest:navigationAction.request];

? ? }

? ? return nil;

}

- (void)didReceiveMemoryWarning {

? ? [super didReceiveMemoryWarning];

? ? // Dispose of any resources that can be recreated.

}

/*

?#pragma mark - Navigation


?// In a storyboard-based application, you will often want to do a little preparation before navigation

?- (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender {

?// Get the new view controller using [segue destinationViewController].

?// Pass the selected object to the new view controller.

?}

?*/

@end

?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個濱河市涝滴,隨后出現(xiàn)的幾起案子,更是在濱河造成了極大的恐慌,老刑警劉巖歼疮,帶你破解...
    沈念sama閱讀 206,482評論 6 481
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件,死亡現(xiàn)場離奇詭異诈唬,居然都是意外死亡韩脏,警方通過查閱死者的電腦和手機,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,377評論 2 382
  • 文/潘曉璐 我一進店門铸磅,熙熙樓的掌柜王于貴愁眉苦臉地迎上來赡矢,“玉大人,你說我怎么就攤上這事阅仔〈瞪ⅲ” “怎么了?”我有些...
    開封第一講書人閱讀 152,762評論 0 342
  • 文/不壞的土叔 我叫張陵八酒,是天一觀的道長空民。 經(jīng)常有香客問我,道長羞迷,這世上最難降的妖魔是什么界轩? 我笑而不...
    開封第一講書人閱讀 55,273評論 1 279
  • 正文 為了忘掉前任,我火速辦了婚禮衔瓮,結(jié)果婚禮上浊猾,老公的妹妹穿的比我還像新娘。我一直安慰自己热鞍,他們只是感情好葫慎,可當我...
    茶點故事閱讀 64,289評論 5 373
  • 文/花漫 我一把揭開白布。 她就那樣靜靜地躺著薇宠,像睡著了一般偷办。 火紅的嫁衣襯著肌膚如雪。 梳的紋絲不亂的頭發(fā)上昼接,一...
    開封第一講書人閱讀 49,046評論 1 285
  • 那天爽篷,我揣著相機與錄音,去河邊找鬼慢睡。 笑死逐工,一個胖子當著我的面吹牛,可吹牛的內(nèi)容都是我干的漂辐。 我是一名探鬼主播泪喊,決...
    沈念sama閱讀 38,351評論 3 400
  • 文/蒼蘭香墨 我猛地睜開眼,長吁一口氣:“原來是場噩夢啊……” “哼髓涯!你這毒婦竟也來了袒啼?” 一聲冷哼從身側(cè)響起,我...
    開封第一講書人閱讀 36,988評論 0 259
  • 序言:老撾萬榮一對情侶失蹤,失蹤者是張志新(化名)和其女友劉穎蚓再,沒想到半個月后滑肉,有當?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體,經(jīng)...
    沈念sama閱讀 43,476評論 1 300
  • 正文 獨居荒郊野嶺守林人離奇死亡摘仅,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點故事閱讀 35,948評論 2 324
  • 正文 我和宋清朗相戀三年靶庙,在試婚紗的時候發(fā)現(xiàn)自己被綠了。 大學時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片娃属。...
    茶點故事閱讀 38,064評論 1 333
  • 序言:一個原本活蹦亂跳的男人離奇死亡六荒,死狀恐怖,靈堂內(nèi)的尸體忽然破棺而出矾端,到底是詐尸還是另有隱情掏击,我是刑警寧澤,帶...
    沈念sama閱讀 33,712評論 4 323
  • 正文 年R本政府宣布秩铆,位于F島的核電站砚亭,受9級特大地震影響,放射性物質(zhì)發(fā)生泄漏豺旬。R本人自食惡果不足惜钠惩,卻給世界環(huán)境...
    茶點故事閱讀 39,261評論 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一處隱蔽的房頂上張望族阅。 院中可真熱鬧篓跛,春花似錦、人聲如沸坦刀。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,264評論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽鲤遥。三九已至沐寺,卻和暖如春,著一層夾襖步出監(jiān)牢的瞬間盖奈,已是汗流浹背混坞。 一陣腳步聲響...
    開封第一講書人閱讀 31,486評論 1 262
  • 我被黑心中介騙來泰國打工, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留钢坦,地道東北人究孕。 一個月前我還...
    沈念sama閱讀 45,511評論 2 354
  • 正文 我出身青樓,卻偏偏與公主長得像爹凹,于是被迫代替她去往敵國和親厨诸。 傳聞我的和親對象是個殘疾皇子,可洞房花燭夜當晚...
    茶點故事閱讀 42,802評論 2 345

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

  • 關(guān)于WKWebview與UIWebview的簡單對比禾酱,可以參考我去年寫的一篇文章WKWbeview的初步使用微酬。這次...
    ZYiDa閱讀 19,437評論 2 10
  • 前言 關(guān)于UIWebView的介紹绘趋,相信看過上文的小伙伴們,已經(jīng)大概清楚了吧颗管,如果有問題陷遮,歡迎提問。 本文是本系列...
    CoderLF閱讀 8,943評論 2 12
  • WKWebView基類封裝 項目一直使用UIWebView垦江,相關(guān)基類方法封裝使用比較完善拷呆,業(yè)務(wù)量重,想整體替換為W...
    IntMan閱讀 732評論 0 0
  • 千頭萬緒腰懂,一時不知該從何說起梗逮。 那么,就先從女生工作這件事開始吧绣溜。 我沒有怎么見過不工作的女生慷彤,即所謂的全職太太,...
    晴朗的小樂樂閱讀 731評論 1 4
  • 十五章回顧 梁西席在陳柯家和自己家來回跑怖喻,半個月不到底哗,黑眼圈都要長到臉上去了。每天一副睡眠不足的狀態(tài)锚沸,上課的時候...
    巫其格閱讀 7,449評論 52 89