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)
前言 在微服务的大环境下,会出现这个服务调用这个接口,那个接口的情况.假设出了问题,需要排查的时候,我们要怎么关联不同服务之间的调用情况呢?换句话就是说,这个请求的结果不对,看看是那里出了问题. 最简 ...
随机推荐
- 五种网络IO模型以及多路复用IO中select/epoll对比
下面都是以网络读数据为例 [2阶段网络IO] 第一阶段:等待数据 wait for data 第二阶段:从内核复制数据到用户 copy data from kernel to user 下面是5种网络 ...
- CSS学习(6)层叠
1.声明冲突 不同的样式,多次应用到同一元素 层叠:解决声明冲突的过程,浏览器自动处理(权重计算) 有时候需要修改样式的时候,可以使用优先级高的方式覆盖,而不是在源代码修改 ①比较重要性 (1)作者样 ...
- 【Python collections】
目录 namedtuple deque Counter OrderedDict defaultdict "在内置数据类型(dict.list.set.tuple)的基础上,collectio ...
- P&R 3
Floorplan: 要做好floorplan需要掌握哪些知识跟技能? 通常,遇到floorplan问题,大致的debug步骤跟方法有哪些? 如何衡量floorplan的QA? Floorplan是后 ...
- VS2017编译错误:#error: Building MFC application with /MD[d] (CRT dll version) requires MFC shared dll version
VS2017编译错误:#error: Building MFC application with /MD[d] (CRT dll version) requires MFC shared dll ve ...
- OracleDBConsoleorcl 服务无法启动:Agent process exited abnormally during initialization.
OracleDBConsoleorcl 服务无法启动 在事件查看器里看到 Agent process exited abnormally during initialization.的记录.知道是因为 ...
- selenium 使用close和quit关闭driver的不同点
Driver.Quit()与Driver.Close()的不同:Driver.Quit(): Quit this dirver, closing every associated windows;Dr ...
- 安装搭建appium运行环境
整体步骤: 1.安装appium依赖的Python包(Appium-Python-Client): 2.安装Appium Desktop(集成了appium server和node.js,所以不需要额 ...
- Scrapy 命令
Scrapy提供了两种类型的命令.一种必须在Scrapy项目中运行(针对项目(Project-specific)的命令),另外一种则不需要(全局命令).全局命令在项目中运行时的表现可能会与在非项目中运 ...
- Qt QML Component 学习笔记
简介 Component是Qt封装好的.只暴露必要接口的QML类型,可以重复利用.一个QML组件就像一个黑盒子,它通过属性.信号.函数和外部世界交互. 一个Component既可以定义在独立的QML文 ...