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)
前言 在微服务的大环境下,会出现这个服务调用这个接口,那个接口的情况.假设出了问题,需要排查的时候,我们要怎么关联不同服务之间的调用情况呢?换句话就是说,这个请求的结果不对,看看是那里出了问题. 最简 ...
随机推荐
- 计算几何-LA2218-HPI-第一次卡精度-vijos1087-铁人三项
This article is made by Jason-Cow.Welcome to reprint.But please post the writer's address. http://ww ...
- 吴裕雄 python 机器学习——核化PCAKernelPCA模型
# -*- coding: utf-8 -*- import numpy as np import matplotlib.pyplot as plt from sklearn import datas ...
- opencv静态编译
在Windows下opencv静态编译. 使用cmake生成visual Studio 2015 解决方案如下图所示: 重点看红色框线里的内容,先编译ALL_BUILD,这样就把所有子项目编译成功.所 ...
- 使用SQL命令行更改数据库字段类型
ALTER TABLE 表名 MODIFY COLUMN 字段名 数据类型 添加列 ALTER TABLE students ADD COLUMN address VARCHAR(100) DEFAU ...
- 自带日期时间 showDatePicker显示中文日期_Flutter时间控件显示中文
flutter showDatePicker showTimePicker显示中文日期 1.配置flutter_localizations依赖 找到pubspec.yaml配置flutter_loca ...
- C++ 宏定义创建(销毁)单例
Util.h: #define CREATE_SINGLETON_POINTER(CLASS,INSTANCE,MUTEX) if (NULL == INSTANCE) \ { \ MUTEX.loc ...
- 每天进步一点点------Altium Designer PCB设计规则中英对照
Electrical(电气规则) Clearance:安全间距规则 Short Circuit:短路规则 UnRouted Net:未布线网络规则 UnConnected Pin:未连线引脚规则 Ro ...
- Centos7 ISCSI配置 完全攻略
Centos7 ISCSI配置 完全攻略 一. iscsi简单介绍 iSCSI( Internet Small Computer System Interface 互联网小型计算机系统接口) iscs ...
- Python短文本自动识别个体是否有自杀倾向【新手必学】
我们以微博树洞为例,讲解了怎么自动爬取单个微博的评论.今天我们就要用上这些数据做一个自杀倾向分类器,这样的分类器如果应用得当,将可以帮助成千上万误入歧途的人们挽回生命. 为了简化问题,我们将短文本分为 ...
- 最漂亮的Spring事务管理详解
SnailClimb 2018年05月21日阅读 7245 可能是最漂亮的Spring事务管理详解 Java面试通关手册(Java学习指南):github.com/Snailclimb/- 微信阅读地 ...