WKWebView单个界面添加请求头
https://www.jianshu.com/p/14b9ea4bf1d4
https://github.com/Yeatse/NSURLProtocol-WebKitSupport/blob/master
重点在这
- (void)setUrl:(NSURL *)url {
_url = url;
HWWeakSelf(weakSelf)
// NSURLRequest *request = [NSURLRequest requestWithURL:weakSelf.url];
NSMutableURLRequest *request = [NSMutableURLRequest requestWithURL:weakSelf.url];
#pragma mark - 添加请求头 (例子需要根据自己的需求修改)
NSTimeInterval timeInterval = [[NSDate date] timeIntervalSince1970];//当前时间距离
NSString *key = [NSString stringWithFormat:@"%.0f0001#j0ZAqg",timeInterval];
[request setValue:[HWDataManager getMD5HashWithMessage:key] forHTTPHeaderField:@"key"];
[request setValue:[NSString stringWithFormat:@"%.0f000", timeInterval] forHTTPHeaderField:@"times"];
[_webView loadRequest:request];
}
.h文件
#import <UIKit/UIKit.h>
#import <WebKit/WebKit.h>
#pragma mark - 尺寸相关
#define HWScreenW [UIScreen mainScreen].bounds.size.width
#define HWScreenH [UIScreen mainScreen].bounds.size.height
#define HWWeakSelf(weakSelf) __weak __typeof(&*self)weakSelf = self; // 弱引用
#ifdef DEBUG // 开发
#define HWLog(...) NSLog(@"%s %d \n%@\n\n",__func__,__LINE__,[NSString stringWithFormat:__VA_ARGS__])
#else // 生产
#define HWLog(...) //NSLog(@"%s %d \n%@\n\n",__func__,__LINE__,[NSString stringWithFormat:__VA_ARGS__])
#endif
@interface HWBaseWebViewController : UIViewController
/** <#注释#> */
@property(nonatomic, strong) NSURL *url;
/** <#注释#> */
@property(nonatomic, strong) WKWebView *webView;
@end
.m文件
#import "HWBaseWebViewController.h"
#define HWAdapterY (HWSystemVersion >= 11?kDevice_Is_iPhoneX?88:64:64)
@interface HWBaseWebViewController ()<WKNavigationDelegate>
/** <#注释#> */
@property(nonatomic, strong) UIView *mainView;
/** <#注释#> */
@property(nonatomic, strong) UIProgressView *progressView;
@end
@implementation HWBaseWebViewController
- (void)viewDidLoad {
[super viewDidLoad];
[self addMainView];
[self creatWebView];
self.view.backgroundColor = [UIColor whiteColor];
}
#pragma mark - 添加进度条
- (void)addMainView {
HWWeakSelf(weakSelf)
UIView *mainView = [[UIView alloc] initWithFrame:CGRectMake(0, 0, HWScreenW, HWScreenH)];
mainView.backgroundColor = [UIColor clearColor];
_mainView = mainView;
[weakSelf.view addSubview:mainView];
UIProgressView *progressView = [[UIProgressView alloc] initWithFrame:CGRectMake(0, [HWTools HWAutoY:self], HWScreenW, 1)];
progressView.progress = 0;
_progressView = progressView;
[weakSelf.view addSubview:progressView];
}
- (void)creatWebView {
HWWeakSelf(weakSelf)
// _webView = [[WKWebView alloc] initWithFrame:CGRectMake(0, [HWTools HWAutoY:self], HWScreenW, HWScreenH - [HWTools HWAutoY:self])];
_webView = [[WKWebView alloc] initWithFrame:self.view.bounds];
_webView.backgroundColor = [UIColor whiteColor];
_webView.navigationDelegate = weakSelf;
_webView.scrollView.bounces = NO;
[weakSelf.mainView addSubview:_webView];
// 添加观察者
[_webView addObserver:weakSelf forKeyPath:@"estimatedProgress" options:NSKeyValueObservingOptionNew context:NULL]; // 进度
[_webView addObserver:weakSelf forKeyPath:@"title" options:NSKeyValueObservingOptionNew context:NULL]; // 标题
}
- (void)setUrl:(NSURL *)url {
_url = url;
HWWeakSelf(weakSelf)
// NSURLRequest *request = [NSURLRequest requestWithURL:weakSelf.url];
NSMutableURLRequest *request = [NSMutableURLRequest requestWithURL:weakSelf.url];
#pragma mark - 添加请求头 (例子需要根据自己的需求修改)
NSTimeInterval timeInterval = [[NSDate date] timeIntervalSince1970];//当前时间距离
NSString *key = [NSString stringWithFormat:@"%.0f0001#j0ZAqg",timeInterval];
[request setValue:[HWDataManager getMD5HashWithMessage:key] forHTTPHeaderField:@"key"];
[request setValue:[NSString stringWithFormat:@"%.0f000", timeInterval] forHTTPHeaderField:@"times"];
[_webView loadRequest:request];
}
// 页面加载失败时调用
- (void)webView:(WKWebView *)webView didFailProvisionalNavigation:(null_unspecified WKNavigation *)navigation withError:(NSError *)error {
}
// 页面加载完毕时调用
- (void)webView:(WKWebView *)webView didFinishNavigation:(null_unspecified WKNavigation *)navigation {
}
#pragma mark - 监听加载进度
- (void)observeValueForKeyPath:(NSString *)keyPath ofObject:(id)object change:(NSDictionary *)change context:(void *)context {
HWWeakSelf(weakSelf)
if ([keyPath isEqualToString:@"estimatedProgress"]) {
if (object == _webView) {
[weakSelf.progressView setAlpha:1.0f];
[weakSelf.progressView setProgress:weakSelf.webView.estimatedProgress animated:YES];
if(weakSelf.webView.estimatedProgress >= 1.0f) {
[UIView animateWithDuration:0.3 delay:0.3 options:UIViewAnimationOptionCurveEaseOut animations:^{
[weakSelf.progressView setAlpha:0.0f];
} completion:^(BOOL finished) {
[weakSelf.progressView setProgress:0.0f animated:NO];
}];
}
} else {
[super observeValueForKeyPath:keyPath ofObject:object change:change context:context];
}
} else if ([keyPath isEqualToString:@"title"]) {
HWLog(@"%@",weakSelf.webView.title);
if (object == weakSelf.webView) {
weakSelf.title = weakSelf.webView.title;
} else {
[super observeValueForKeyPath:keyPath ofObject:object change:change context:context];
}
} else {
[super observeValueForKeyPath:keyPath ofObject:object change:change context:context];
}
}
// 当对象即将销毁的时候调用
- (void)dealloc {
NSLog(@"webView释放");
// HWWeakSelf(weakSelf)
[_webView removeObserver:self forKeyPath:@"estimatedProgress"];
[_webView removeObserver:self forKeyPath:@"title"];
_webView.navigationDelegate = nil;
}
#pragma mark - WKNavigationDelegate
#pragma mark - 截取当前加载的URL
//- (void)webView:(WKWebView *)webView decidePolicyForNavigationAction:(WKNavigationAction *)navigationAction decisionHandler:(void (^)(WKNavigationActionPolicy))decisionHandler {
// HWWeakSelf(weakSelf)
// NSURL *URL = navigationAction.request.URL;
// HWLog(@"%@", URL);
// if (![[NSString stringWithFormat:@"%@", weakSelf.url] isEqualToString:[NSString stringWithFormat:@"%@", URL]]) { // 不相等
// // weakSelf.navigationView.titleLabel.text = @"攻略详情";
// HWStrategyDetailsViewController *vc = [[HWStrategyDetailsViewController alloc] init];
// vc.url = URL;
// [weakSelf.navigationController pushViewController:vc animated:YES];
// // self.button.hidden = NO;
// // _webView.height = HWScreenH-64-50;
// // self.collectionButton.hidden = NO;
// // self.forwardingButton.hidden = NO;
// decisionHandler(WKNavigationActionPolicyCancel);
// }else {
// weakSelf.navigationView.titleLabel.text = weakSelf.title;
// decisionHandler(WKNavigationActionPolicyAllow); // 必须实现 不然会崩溃
// }
//}
@end
WKWebView单个界面添加请求头的更多相关文章
- iOS UIWebview添加请求头的两种方式
1.在UIWebviewDelegate的方法中拦截request,设置request的请求头,废话不多说看代码: - (BOOL)webView:(UIWebView *)webView shoul ...
- urllib2 post请求方式,带cookie,添加请求头
#encoding = utf-8 import urllib2import urllib url = 'http://httpbin.org/post'data={"name": ...
- springcloud- FeginClient 调用统一拦截添加请求头 RequestInterceptor ,被调用服务获取请求头
使用场景: 在springcloud中通过Fegin调用远端RestApi的时候,经常需要传递一些参数信息到被调用服务中去,比如从A服务调用B服务的时候, 需要将当前用户信息传递到B调用的服务中去,我 ...
- LoadRunner11脚本小技能之添加请求头+定义变量+响应内容乱码转换打印+事务拆分
一.添加请求头 存在一些接口,发送请求时需要进行权限验证.登录验证(不加请求头时运行脚本,接口可能会报401等等),所以需要在脚本中给对应请求添加请求头.注意:请求头需在请求前添加,包含url类.su ...
- Retrofit2 动态(静态)添加请求头Header
Retrofit提供了两个两种定义HTTP请求头字段的方法即静态和动态.静态头不能改变为不同的请求,头的键和值是固定的且不可改变的,随着程序的打开便已固定. 动态添加 @GET("/&quo ...
- python爬虫添加请求头和请求主体
添加头部信息有两种方法 1.通过添加urllib.request.Request中的headers参数 #先把要用到的信息放到一个字典中 headers = {} headers['User-Agen ...
- 给requests模块添加请求头列表和代理ip列表
Requests 是使用 Apache2 Licensed 许可证的 基于Python开发的HTTP 库,其在Python内置模块的基础上进行了高度的封装,符合了Python语言的思想,通俗的说去繁存 ...
- ajax添加请求头(添加Authorization字段)
我们在发AJAX请求的时候可能会需要自定义请求头,在jQuery的$.ajax()方法中提供了beforeSend属性方便我们进行此操作. beforeSend: function(request) ...
- 给HttpClient添加请求头(HttpClientFactory)
前言 在微服务的大环境下,会出现这个服务调用这个接口,那个接口的情况.假设出了问题,需要排查的时候,我们要怎么关联不同服务之间的调用情况呢?换句话就是说,这个请求的结果不对,看看是那里出了问题. 最简 ...
随机推荐
- easy-rules
我们在写业务代码经常遇到需要一大堆if/else,会导致代码可读性大大降低,有没有一种方法可以避免代码中出现大量的判断语句呢?答案是用规则引擎,但是传统的规则引擎都比较重,比如开源的Drools,不适 ...
- AcWing 868. 筛质数 线性筛法
#include <iostream> #include <algorithm> using namespace std; ; int primes[N], cnt; bool ...
- stl队列
队列(Queue)也是一种运算受限的线性表,它的运算限制与栈不同,是两头都有限制,插入只能在表的一端进行(只进不出),而删除只能在表的另一端进行(只出不进),允许删除的一端称为队尾(rear),允许插 ...
- 吴裕雄 python 机器学习——集成学习随机森林RandomForestClassifier分类模型
import numpy as np import matplotlib.pyplot as plt from sklearn import datasets,ensemble from sklear ...
- electron-vue + element-ui构建桌面应用
最近需要用Node.js做一个桌面的应用,了解到electron可以用来做跨平台的桌面应用,而vue可以用来作为界面的解决方案,研究了一会儿如何把他们两个整合到一起使用,遇到了各种问题而放弃,毕竟作为 ...
- python之nosetest
nose介绍 nose下载 nose使用 -s 能够打印用例中的print信息 ➜ func_tests git:(master) ✗ nosetests -v test_app.py:TestApp ...
- IEC 60958 && IEC 61937
IEC 60958 IEC 60958是一种传递数字音频的接口规范,相比I2S,IEC60958通过一根线同时传递时钟信号和数据信号.IEC 60958用来传递两channel,16/20/24bit ...
- 基于Aspectj表达式配置的Spring AOP
AOP(Aspect-Oriented Programming, 面向切面编程):是一种新的方法论, 是对传统OOP(Object-Oriented Programming, 面向对象编程)的补充. ...
- static关键字 weak关键字
1.static关键字 static HAL_StatusTypeDef UART_Receive_IT(UART_HandleTypeDef *huart){ ...} 在函数前面加了一个stati ...
- 《实战Java高并发程序设计》读书笔记一
第一章 走入并行世界 1.基本概念 同步:同步方法一旦开始,调用者必须等到方法调用返回后,才能继续后续操作 异步:一旦开始,方法调用就会立即返回,调用就可以继续后续操作 并发:表示两个或者多个任务一起 ...