#import "LKSHealthReportViewController.h"
#import <WebKit/WebKit.h>
@interface LKSHealthReportViewController ()<WKNavigationDelegate>
/** <#注釋#> */
@property(nonatomic, strong) WKWebView *webView;
/** <#注釋#> */
@property(nonatomic, strong) UIView *mainView;
/** 進(jìn)度條 */
@property(nonatomic, strong) UIProgressView *progressView;
/** 加載失敗時(shí)候顯示界面 */
@property(nonatomic, strong) HWNoDataView *noDataView;
/** 主頁URL */
@property(nonatomic, strong) NSURL *url;
/** 請(qǐng)求 */
@property(nonatomic, strong) NSMutableURLRequest *request;
/** 保存當(dāng)前請(qǐng)求的URL */
@property(nonatomic, strong) NSURL *currentUrl;
@end
@implementation LKSHealthReportViewController
- (HWNoDataView *)noDataView {
if (!_noDataView) {
__weak typeof(self) weakSelf = self;
_noDataView = [HWNoDataView showNoDataViewWithView:self.view title:@"網(wǎng)絡(luò)不給力,請(qǐng)點(diǎn)擊重試"];
_noDataView.actionBlcok = ^(){
HWLog(@"點(diǎn)擊了屏幕");
[weakSelf.request setValue:[KUserNamePassWord getAccess_token] forHTTPHeaderField:@"token"];
[weakSelf.webView loadRequest:weakSelf.request];
};
}
return _noDataView;
}
- (void)viewDidLoad {
[super viewDidLoad];
self.url = [NSURL URLWithString:[NSString stringWithFormat:@"%@%@",KHealth,[KUserNamePassWord getDeviceIdStr]]];
self.request = [NSMutableURLRequest requestWithURL:self.url];
[HWTools setVCTitleWithName:@"健康報(bào)告" VC:self];
[HWTools setBGColorWithViewController:self];
[self addMainView];
[self creatWebView];
}
#pragma mark - 添加進(jìn)度條
- (void)addMainView {
UIView *mainView = [[UIView alloc] initWithFrame:CGRectMake(0, 0, HWScreenW, HWScreenH)];
mainView.backgroundColor = [UIColor clearColor];
_mainView = mainView;
[self.view addSubview:mainView];
UIProgressView *progressView = [[UIProgressView alloc] initWithFrame:CGRectMake(0, 64, HWScreenW, 1)];
progressView.progress = 0;
_progressView = progressView;
[self.view addSubview:progressView];
}
- (void)creatWebView {
_webView = [[WKWebView alloc] initWithFrame:CGRectMake(0, 0, HWScreenW, HWScreenH)];
_webView.backgroundColor = [UIColor whiteColor];
[self.request setValue:[KUserNamePassWord getAccess_token] forHTTPHeaderField:@"token"];
_webView.navigationDelegate = self;
_webView.scrollView.bounces = NO;
// _webView.scrollView.scrollIndicatorInsets = UIEdgeInsetsMake(40, 0, 0, 0);
[_webView loadRequest:self.request];
[self.mainView addSubview:_webView];
// 添加觀察者
[_webView addObserver:self forKeyPath:@"estimatedProgress" options:NSKeyValueObservingOptionNew context:NULL]; // 進(jìn)度
}
#pragma mark - WKNavigationDelegate
#pragma mark - 截取當(dāng)前加載的URL 為每一個(gè)請(qǐng)求添加token
- (void)webView:(WKWebView *)webView decidePolicyForNavigationAction:(WKNavigationAction *)navigationAction decisionHandler:(void (^)(WKNavigationActionPolicy))decisionHandler
{
NSURL *URL = navigationAction.request.URL;
HWLog(@"%@", URL);
if (![[NSString stringWithFormat:@"%@",URL] isEqualToString:[NSString stringWithFormat:@"%@",self.url]]) { // 不是主頁 加載
if (![[NSString stringWithFormat:@"%@",URL] isEqualToString:[NSString stringWithFormat:@"%@",self.currentUrl]]) {
NSMutableURLRequest *request = [NSMutableURLRequest requestWithURL:URL];
[request setValue:[KUserNamePassWord getAccess_token] forHTTPHeaderField:@"token"];
[webView loadRequest:request];
self.currentUrl = URL;
decisionHandler(WKNavigationActionPolicyCancel); // 必須實(shí)現(xiàn) 取消加載 不然會(huì)加載2遍
return;
} else {
self.currentUrl = URL;
decisionHandler(WKNavigationActionPolicyAllow); // 必須實(shí)現(xiàn) 加載
return;
}
} else {
self.currentUrl = URL;
decisionHandler(WKNavigationActionPolicyAllow); // 必須實(shí)現(xiàn) 加載
return;
}
}
// 頁面加載失敗時(shí)調(diào)用
- (void)webView:(WKWebView *)webView didFailProvisionalNavigation:(null_unspecified WKNavigation *)navigation withError:(NSError *)error {
self.noDataView.alpha = 0;
}
// 頁面加載完畢時(shí)調(diào)用
- (void)webView:(WKWebView *)webView didFinishNavigation:(null_unspecified WKNavigation *)navigation {
self.noDataView.alpha = 0;
}
#pragma mark - 監(jiān)聽加載進(jìn)度
- (void)observeValueForKeyPath:(NSString *)keyPath ofObject:(id)object change:(NSDictionary *)change context:(void *)context {
if ([keyPath isEqualToString:@"estimatedProgress"]) {
if (object == _webView) {
[self.progressView setAlpha:1.0f];
[self.progressView setProgress:self.webView.estimatedProgress animated:YES];
if(self.webView.estimatedProgress >= 1.0f) {
[UIView animateWithDuration:0.3 delay:0.3 options:UIViewAnimationOptionCurveEaseOut animations:^{
[self.progressView setAlpha:0.0f];
} completion:^(BOOL finished) {
[self.progressView setProgress:0.0f animated:NO];
}];
}
} else {
[super observeValueForKeyPath:keyPath ofObject:object change:change context:context];
}
} else {
[super observeValueForKeyPath:keyPath ofObject:object change:change context:context];
}
}
// 當(dāng)對(duì)象即將銷毀的時(shí)候調(diào)用
- (void)dealloc {
HWLog(@"webView釋放");
[_webView removeObserver:self forKeyPath:@"estimatedProgress"];
}
@end
WKWebView 攔截URL 為每個(gè)請(qǐng)求添加Token
最后編輯于 :
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
- 文/潘曉璐 我一進(jìn)店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來寸潦,“玉大人色鸳,你說我怎么就攤上這事〖” “怎么了命雀?”我有些...
- 文/不壞的土叔 我叫張陵,是天一觀的道長(zhǎng)斩箫。 經(jīng)常有香客問我吏砂,道長(zhǎng),這世上最難降的妖魔是什么乘客? 我笑而不...
- 正文 為了忘掉前任狐血,我火速辦了婚禮,結(jié)果婚禮上易核,老公的妹妹穿的比我還像新娘匈织。我一直安慰自己,他們只是感情好耸成,可當(dāng)我...
- 文/花漫 我一把揭開白布报亩。 她就那樣靜靜地躺著浴鸿,像睡著了一般。 火紅的嫁衣襯著肌膚如雪弦追。 梳的紋絲不亂的頭發(fā)上岳链,一...
- 文/蒼蘭香墨 我猛地睜開眼牵辣,長(zhǎng)吁一口氣:“原來是場(chǎng)噩夢(mèng)啊……” “哼摔癣!你這毒婦竟也來了?” 一聲冷哼從身側(cè)響起纬向,我...
- 序言:老撾萬榮一對(duì)情侶失蹤择浊,失蹤者是張志新(化名)和其女友劉穎,沒想到半個(gè)月后逾条,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體琢岩,經(jīng)...
- 正文 獨(dú)居荒郊野嶺守林人離奇死亡,尸身上長(zhǎng)有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
- 正文 我和宋清朗相戀三年师脂,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了担孔。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片。...
- 正文 年R本政府宣布,位于F島的核電站谒府,受9級(jí)特大地震影響拼坎,放射性物質(zhì)發(fā)生泄漏。R本人自食惡果不足惜完疫,卻給世界環(huán)境...
- 文/蒙蒙 一泰鸡、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧壳鹤,春花似錦盛龄、人聲如沸。這莊子的主人今日做“春日...
- 文/蒼蘭香墨 我抬頭看了看天上的太陽啊鸭。三九已至,卻和暖如春匿值,著一層夾襖步出監(jiān)牢的瞬間赠制,已是汗流浹背。 一陣腳步聲響...
- 正文 我出身青樓绊谭,卻偏偏與公主長(zhǎng)得像政恍,于是被迫代替她去往敵國(guó)和親。 傳聞我的和親對(duì)象是個(gè)殘疾皇子达传,可洞房花燭夜當(dāng)晚...
推薦閱讀更多精彩內(nèi)容
- 此代理方法相當(dāng)于UIWebView的 想要在請(qǐng)求的URL中添加頭部參數(shù)如Token之類的篙耗,就是在此方法中攔截URL...
- Android中處理網(wǎng)頁時(shí)我們必然用到WebView,這里我們有這樣一個(gè)需求,我們想讓W(xué)ebView在處理網(wǎng)絡(luò)請(qǐng)求...
- 首先介紹下WKWebview與UIWebview的區(qū)別宪赶,UIWebView自iOS2就有鹤树,WKWebView從iO...
- WKWebView 與 UIWebView 攔截URL 的處理方式基本一樣。除了代理方法和WKWebView的使用...