pod 'SDWebImage/WebP'
#import "BAWKWebView_WebP.h"
#ifndef BAWKWebView_WebP_h
#define BAWKWebView_WebP_h
//#import "BAURLSessionProtocol.h"
#import "NSURLProtocol+BAWebView.h"
/*!
*********************************************************************************
************************************ 更新说明 ************************************
*********************************************************************************
欢迎使用 BAHome 系列开源代码 !
如有更多需求,请前往:https://github.com/BAHome
项目源码地址:
OC 版 :https://github.com/BAHome/BAWKWebView_WebP
最新更新时间:2017-08-02 【倒叙】<br>
最新Version:【Version:1.0.0】<br>
更新内容:<br>
1.0.0.1、用分类封装 WKWebView,代码无任何侵入更改<br>
1.0.0.2、WKWebView 目前可以兼容 GIF 动图显示,和 webp 的静态图片显示(webp 的动态图片显示需要等待后期版本更新)<br>
*/
#endif /* BAWKWebView_WebP_h */
/****
NSURLProtocol, UIWebView 直接就可以支持,但是 WKWebView 是不支持的,如何让 WKWebView 也支持 NSURLProtocol
**/
#import <Foundation/Foundation.h>
@interface NSURLProtocol (BAWebView)
/**
NSURLProtocol:registerScheme
@param scheme 【http/https】
*/
+ (void)ba_web_registerScheme:(NSString*)scheme;
/**
NSURLProtocol:webView销毁的时候注销Scheme
@param scheme 【http/https】
*/
+ (void)ba_web_unregisterScheme:(NSString*)scheme;
@end
// 示例1:
- (void)viewDidLoad {
[super viewDidLoad];
// Do any additional setup after loading the view, typically from a nib.
[self.view setBackgroundColor:[UIColor whiteColor]];
[self ba_registerURLProtocol];
[self.view addSubview:self.wkWebview];
[self.wkWebview loadRequest:[NSURLRequest requestWithURL:[NSURL URLWithString:self.urlString]]];
}
- (void)viewDidLayoutSubviews
{
[super viewDidLayoutSubviews];
self.wkWebview.frame = CGRectMake(0, 0, BAKit_SCREEN_WIDTH, BAKit_SCREEN_HEIGHT);
}
#pragma mark - 注册自定义 NSURLProtocol
- (void)ba_registerURLProtocol
{
[NSURLProtocol registerClass:NSClassFromString(@"BAURLSessionProtocol")];
// 注册registerScheme使得WKWebView支持NSURLProtocol
[NSURLProtocol ba_web_registerScheme:@"http"];
[NSURLProtocol ba_web_registerScheme:@"https"];
}
- (void)dealloc
{
[NSURLProtocol unregisterClass:NSClassFromString(@"BAURLSessionProtocol")];
// 移除 registerScheme
[NSURLProtocol ba_web_unregisterScheme:@"http"];
[NSURLProtocol ba_web_unregisterScheme:@"https"];
}
- (WKWebView *)wkWebview
{
if (!_wkWebview)
{
_wkWebview = [[WKWebView alloc]initWithFrame:CGRectZero];
}
return _wkWebview;
}
其他示例可下载 demo 查看源码!
欢迎使用 【BAHome】 系列开源代码 ! 如有更多需求,请前往:【https://github.com/BAHome】
最新更新时间:2017-08-02 【倒叙】
最新Version:【Version:1.0.0】
更新内容:
1.0.0.1、用分类封装 WKWebView,代码无任何侵入更改
1.0.0.2、WKWebView 目前可以兼容 GIF 动图显示,和 webp 的静态图片显示(webp 的动态图片显示需要等待后期版本更新)
1、开发中遇到 bug,希望小伙伴儿们能够及时反馈与我们 BAHome 团队,我们必定会认真对待每一个问题!
2、以后提需求和 bug 的同学,记得把 git 或者博客链接给我们,我直接超链到你们那里!希望大家积极参与测试!
1、QQ 群 479663605
【注意:此群为 2 元 付费群,介意的小伙伴儿勿扰!】
孙博岩
QQ:137361770
git:https://github.com/boai
简书:http://www.jianshu.com/u/95c9800fdf47
微博:马景丽
QQ:1253540493
git:https://github.com/MaJingli陆晓峰
QQ:442171865
git:https://github.com/zeR0Lu陈集
QQ:3161182978
git:https://github.com/chenjipdc
简书:http://www.jianshu.com/u/90ae559fc21d任子丰
QQ:459643690
git:https://github.com/renzifeng吴丰收
QQ:498121294
石少庸
QQ:363605775
git:https://github.com/CrazyCoderShi
简书:http://www.jianshu.com/u/0726f4d689a3唐海洋
QQ:790015339
git:https://github.com/tanghaiyang1992
简书:http://www.jianshu.com/u/b833cfd6bd58
开发使用 最新版本 Xcode,理论上支持 iOS 8 及以上版本,如有版本适配问题,请及时反馈!多谢合作!
感谢 BAHome 团队成员倾力合作,后期会推出一系列 常用 UI 控件的封装,大家有需求得也可以在 issue 提出,如果合理,我们会尽快推出新版本!
BAHome 的发展离不开小伙伴儿的信任与推广,再次感谢各位小伙伴儿的支持!