鉴于iOS13上线封杀UIWebView,所以直接WKWebView就好了
############
现在的纯原生的APP越来越少了,结合webView去解决很多繁琐的页面,可以合理的节省很多开发成本
一般现在APP都是适配iOS8以及之后的版本,所以WKWebView是最佳选择,然而也有很多APP也是需要适配iOS7及以前的版本,此处推荐一个好用的第三方框架WebViewJavascriptBridge,两种都支持
//webView不需要导入架包,WK则是需要导入上图所示的webkit包必要的代理以及设置一个属性可以更方便
@interface NewEnergyController()<UIWebViewDelegate,WKNavigationDelegate,WKUIDelegate,>
@property (nonatomic, strong) WKWebView *WKWebView;
@property (nonatomic, strong) UIWebView *myWebView;
@property WebViewJavascriptBridge* bridge;
@end
- (void)viewDidLoad {
[super viewDidLoad];
if (iOS8_OR_LATER) {
[self setUpWKWebView];
}else{
[self setUpWebView];
}
}
- (void)setUpWebView{
self.myWebView = [[UIWebView alloc]initWithFrame:self.view.bounds];
self.myWebView.backgroundColor = [UIColor clearColor];
self.myWebView.delegate = self;
self.myWebView.scrollView.bounces=NO;
[self.myWebView.scrollView setAlwaysBounceVertical:YES];
self.myWebView.scrollView.showsVerticalScrollIndicator = FALSE;
self.myWebView.scrollView.showsHorizontalScrollIndicator = FALSE;
NSString * userContent = [NSString stringWithFormat:@"{\"token\": \"%@\", \"userId\": %@}", @"a1cd4a59-974f-44ab-b264-46400f26c849", @"89"];
// 设置localStorage
NSString *jsString = [NSString stringWithFormat:@"localStorage.setItem('userContent', '%@')", userContent];
[self.myWebView stringByEvaluatingJavaScriptFromString:jsString];
[self.view addSubview:self.myWebView];
}
- (void)setUpWKWebView{
//相应的alloc方法还是很多的,可以看看源文件,按需使用
self.WKWebView = [[WKWebView alloc] initWithFrame:self.view.bounds];
[self.WKWebView setNavigationDelegate:self];
self.WKWebView.scrollView.bounces = NO;
[self.WKWebView.scrollView setAlwaysBounceVertical:YES];
self.WKWebView.scrollView.showsVerticalScrollIndicator = FALSE;
self.WKWebView.scrollView.showsHorizontalScrollIndicator = FALSE;
[self.WKWebView setMultipleTouchEnabled:YES];
[self.WKWebView setAutoresizingMask:UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleHeight];
//什么时候加的东西,我也忘了
NSString * userContent = [NSString stringWithFormat:@"{\"token\": \"%@\", \"userId\": %@}", @"a1cd4a59-974f-44ab-b264-46400f26c849", @"89"];
// 设置localStorage
NSString *jsString = [NSString stringWithFormat:@"localStorage.setItem('userContent', '%@')", userContent];
[self.WKWebView evaluateJavaScript:jsString completionHandler:nil];
[self setWebViewBridge];
[self.view addSubview:self.WKWebView];
adjustsScrollViewInsets(self.WKWebView);
//额,项目原本在iOS10、Xcode8里面没有问题,更新到Xcode9、iOS11后navigation上面的状态栏会空白,找了很久,最后突然想到是iOS11适配的原因
if (@available(iOS 11.0, *)) {
self.WKWebView.scrollView.contentInsetAdjustmentBehavior = UIScrollViewContentInsetAdjustmentNever;
self.WKWebView.scrollView.contentInset = UIEdgeInsetsMake(0, 0, 0, 0);
self.WKWebView.scrollView.scrollIndicatorInsets = self.WKWebView.scrollView.contentInset;
}
}
//下面就是交互主角了
#pragma mark JS调用OC
- (void)setWebViewBridge{
[WebViewJavascriptBridge enableLogging];
//在这个地方只用了WK
_bridge = [WebViewJavascriptBridge bridgeForWebView:self.WKWebView];
[_bridge setWebViewDelegate:self];
/*
含义:JS调用OC
@param “upLoadImageArray” 要发生的事件名称(和后台约定)
@param handel 回调block函数 当后台触发这个事件的时候会执行block里面的代码,此处的data一般都是一个字典(和后台约定)
*/
[_bridge registerHandler:@"upLoadImageArray" handler:^(id data, WVJBResponseCallback responseCallback) {
NSLog(@"数据:%@",data[@"useAlbum"]);//此处和后台约定的字典的key是"useAlbum"
//可以解析后台传过来的字典,根据不同的值执行不一样的操作
}];
/*
含义:OC调用JS
@param callHandler 商定的事件名称,用来调用网页里面相应的事件实现
@param data id类型,相当于我们函数中的参数,向网页传递函数执行需要的参数
注意,这里callHandler分3种,根据需不需要传参数和需不需要后台返回执行结果来决定用哪个,自己command进入源码看具体情况
*/
[_bridge callHandler:@"registerAction" data:@"uid:123 pwd:123" responseCallback:^(id responseData) {
NSLog(@"oc请求js后接受的回调结果:%@",responseData);
}];
}
还有就是要注意还有一些WebView和WKWebView相应的代理方法来完成基本的webView显示,不在此处讨论范围,如有需要可以联系我
沙漠骑士