UIWebview加载H5界面侧滑返回上一级
一、UIWebview的发现
问题发现:当UIWebview王深层次点击的时候,返回时需要webView执行goBack方法一级一级返回,这样看到的webView只是在该界面执行刷新,并看不到类似iOS系统那样的侧滑返回上一级。
实现思想:我们可以从第一级开始对每一级webView加载的内容,截取屏幕的图片并保存到数组中,然后给webView添加pan手势,判断手势侧滑的时候,添加UIImageView显示视频里面截图的内容,同时调整webView的x值和imageView的x值,当侧滑完全返回时,移除imageView,webView并重新加载新的链接,即可实现侧滑返回效果。
二、实现代码如下
1、DLPanableWebView.h代码实现
#import <UIKit/UIKit.h>
@class DLPanableWebView;
@protocol DLPanableWebViewDelegate <NSObject>
// 0 成功 1 完成 2 失败
- (void)webViewLoadState:(NSInteger)state;
@optional
- (void)panableWebView:(DLPanableWebView *)webView panPopGesture:(UIPanGestureRecognizer *)pan;
@end
@interface DLPanableWebView : UIWebView
@property(nonatomic, weak) id <DLPanableWebViewDelegate> panDelegate;
@property(nonatomic, assign) BOOL enablePanGesture;
- (void)goBack;
@end
2、DLPanableWebView.m代码实现
#import "DLPanableWebView.h"
@interface DLPanableWebView()<UIWebViewDelegate>
@property (nonatomic, strong) UIGestureRecognizer* popGesture;
@property (nonatomic, weak) id <UIWebViewDelegate> originDelegate;
@property (nonatomic, strong)UIImageView *historyView;
@property (nonatomic, strong) NSMutableArray *historyStack;
@property (nonatomic, assign) CGFloat panStartX;
@end
@implementation DLPanableWebView
+ (UIImage *)screenshotOfView:(UIView *)view {
UIGraphicsBeginImageContextWithOptions(view.frame.size, YES, 0.0);
if ([view respondsToSelector:@selector(drawViewHierarchyInRect:afterScreenUpdates:)]) {
[view drawViewHierarchyInRect:view.bounds afterScreenUpdates:YES];
}
else{
[view.layer renderInContext:UIGraphicsGetCurrentContext()];
}
UIImage *image = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();
return image;
}
+ (void)addShadowToView:(UIView *)view{
CALayer *layer = view.layer;
UIBezierPath *path = [UIBezierPath bezierPathWithRect:layer.bounds];
layer.shadowPath = path.CGPath;
layer.shadowColor = [UIColor blackColor].CGColor;
layer.shadowOffset = CGSizeZero;
layer.shadowOpacity = 0.4f;
layer.shadowRadius = 8.0f;
}
- (void)setDelegate:(id<UIWebViewDelegate>)delegate{
self.originDelegate = delegate;
}
- (id<UIWebViewDelegate>)delegate{
return self.originDelegate;
}
- (void)goBack{
[super goBack];
[self.historyStack removeLastObject];
}
- (void)setEnablePanGesture:(BOOL)enablePanGesture{
self.popGesture.enabled = enablePanGesture;
}
- (BOOL)enablePanGesture{
return self.popGesture.enabled;
}
- (NSMutableArray *)historyStack {
if (!_historyStack) {
_historyStack = [NSMutableArray array];
}
return _historyStack;
}
- (UIImageView *)historyView{
if (!_historyView) {
if (self.superview) {
_historyView = [[UIImageView alloc] initWithFrame:self.bounds];
[self.superview insertSubview:_historyView belowSubview:self];
}
}
return _historyView;
}
- (id)init{
if (self = [super init]) {
[self commonInit];
}
return self;
}
- (id)initWithCoder:(NSCoder *)aDecoder{
if (self = [super initWithCoder:aDecoder]) {
[self commonInit];
}
return self;
}
- (id)initWithFrame:(CGRect)frame{
if (self = [super initWithFrame:frame]) {
[self commonInit];
}
return self;
}
- (void)commonInit{
self.popGesture = [[UIPanGestureRecognizer alloc] initWithTarget:self action:@selector(panGesture:)];
[self addGestureRecognizer:self.popGesture];
[super setDelegate:self];
[DLPanableWebView addShadowToView:self];
}
- (void)dealloc {
if (self.historyView) {
[self.historyView removeFromSuperview];
self.historyView = nil;
}
}
- (void)layoutSubviews {
[super layoutSubviews];
self.historyView.frame = self.bounds;
}
#pragma mark === gesture===
- (void)panGesture:(UIPanGestureRecognizer *)sender{
if (![self canGoBack] || self.historyStack.count == 0) {
if (self.panDelegate && [self.panDelegate respondsToSelector:@selector(panableWebView:panPopGesture:)]) {
[self.panDelegate panableWebView:self panPopGesture:sender];
}
return;
}
CGPoint point = [sender translationInView:self];
if (sender.state == UIGestureRecognizerStateBegan) {
_panStartX = point.x;
}
else if (sender.state == UIGestureRecognizerStateChanged){
CGFloat deltaX = point.x - _panStartX;
if (deltaX > 0) {
if ([self canGoBack]) {
assert(self.historyStack.count > 0);
self.historyView.image = [self.historyStack.lastObject objectForKey:@"preview"];
self.x = deltaX;
self.historyView.x = -self.width / 2.0f + deltaX / 2.0f;
}
}
}
else if (sender.state == UIGestureRecognizerStateEnded){
CGFloat deltaX = point.x - _panStartX;
CGFloat duration = .5f;
if ([self canGoBack]) {
if (deltaX > self.width / 4.0f) {
[UIView animateWithDuration:(1.0f - deltaX / self.width) * duration animations:^{
self.x = self.width;
self.historyView.x = 0;
[self goBack];
} completion:^(BOOL finished) {
self.x = 0;
[self.historyView removeFromSuperview];
self.historyView = nil;
}];
}
else{
[UIView animateWithDuration:(deltaX/self.bounds.size.width)*duration animations:^{
CGRect rc = self.frame;
rc.origin.x = 0;
self.frame = rc;
rc.origin.x = -self.bounds.size.width/2.0f;
self.historyView.frame = rc;
} completion:^(BOOL finished) {
}];
}
}
}
}
#pragma mark ===uiwebview===
- (BOOL)webView:(UIWebView *)webView shouldStartLoadWithRequest:(NSURLRequest *)request navigationType:(UIWebViewNavigationType)navigationType{
BOOL ret = YES;
if (self.originDelegate && [self.originDelegate respondsToSelector:@selector(webView:shouldStartLoadWithRequest:navigationType:)]) {
ret = [self.originDelegate webView:webView shouldStartLoadWithRequest:request navigationType:navigationType];
}
BOOL isFragmentJump = NO;
if (request.URL.fragment) {
NSString *nonFragmentURL = [request.URL.absoluteString stringByReplacingOccurrencesOfString:[@"#" stringByAppendingString:request.URL.fragment] withString:@""];
if (webView.request.URL.absoluteString) {
NSString *preNonFragmentURL;
if (webView.request.URL.fragment) {
preNonFragmentURL = [webView.request.URL.absoluteString stringByReplacingOccurrencesOfString:[@"#" stringByAppendingString:webView.request.URL.fragment] withString:@""];
}
else{
preNonFragmentURL = webView.request.URL.absoluteString;
}
isFragmentJump = [nonFragmentURL isEqualToString:preNonFragmentURL];
}
}
BOOL isTopLevelNavigation = [request.mainDocumentURL isEqual:request.URL];
BOOL isHTTPOrFile = [request.URL.scheme isEqualToString:@"http"] || [request.URL.scheme isEqualToString:@"https"] || [request.URL.scheme isEqualToString:@"file"];
if (ret && !isFragmentJump && isHTTPOrFile && isTopLevelNavigation) {
if ((navigationType == UIWebViewNavigationTypeLinkClicked || navigationType == UIWebViewNavigationTypeOther) && [[webView.request.URL description] length]) {
if (![[self.historyStack.lastObject objectForKey:@"url"] isEqualToString:[self.request.URL description]]) {
UIImage *curPreview = [DLPanableWebView screenshotOfView:self];
[self.historyStack addObject:@{@"preview":curPreview, @"url":[self.request.URL description]}];
}
}
}
// 点击自带返回,移除一个
if (navigationType == UIWebViewNavigationTypeBackForward) {
[self.historyStack removeLastObject];
}
NSLog(@"数组个数 ===> %zd",self.historyStack.count);
return ret;
}
- (void)webViewDidStartLoad:(UIWebView *)webView {
[UIApplication sharedApplication].networkActivityIndicatorVisible = YES;
if (self.originDelegate && [self.originDelegate respondsToSelector:@selector(webViewDidStartLoad:)]) {
[self.originDelegate webViewDidStartLoad:webView];
}
if ([self.panDelegate respondsToSelector:@selector(webViewLoadState:)]) {
[self.panDelegate webViewLoadState:0];
}
}
- (void)webViewDidFinishLoad:(UIWebView *)webView {
[UIApplication sharedApplication].networkActivityIndicatorVisible = NO;
if (self.originDelegate && [self.originDelegate respondsToSelector:@selector(webViewDidFinishLoad:)]) {
[self.originDelegate webViewDidFinishLoad:webView];
}
if ([self.panDelegate respondsToSelector:@selector(webViewLoadState:)]) {
[self.panDelegate webViewLoadState:1];
}
}
- (void)webView:(UIWebView *)webView didFailLoadWithError:(NSError *)error {
[UIApplication sharedApplication].networkActivityIndicatorVisible = NO;
if (self.originDelegate && [self.originDelegate respondsToSelector:@selector(webView:didFailLoadWithError:)]) {
[self.originDelegate webView:webView didFailLoadWithError:error];
}
if ([self.panDelegate respondsToSelector:@selector(webViewLoadState:)]) {
[self.panDelegate webViewLoadState:2];
}
}
@end
UIWebview加载H5界面侧滑返回上一级的更多相关文章
- 移动web、webApp、混合APP、原生APP、androd H5混合开发 当无网络下,android怎么加载H5界面
PhoneGap是一个采用HTML,CSS和JavaScript的技术,创建移动跨平台移动应用程序的快速开发平台.它使开发者能够在网页中调用IOS,Android,Palm,Symbian,WP7,W ...
- iOS “请在微信客户端打开链接” UIWebview加载H5页面携带session、cookie、User-Agent信息 设置cookie、清除cookie、设置User-Agent
公司新开的一个项目..内容基本上是加载H5页面显示..当时觉得挺简单的..后来发现自己掉坑里了..一些心理历程就不说了..说这个项目主要用到的知识点吧..也是自己踩得坑. 首先说说..这个项目上的内容 ...
- 新浪微博客户端(13)-使用UIWebView加载OAuth授权界面
使用UIWebView加载OAuth授权界面 DJOAuthViewController.m #import "DJOAuthViewController.h" @interfac ...
- 浅试 Webview 一app 加载 H5小游戏
整体架构: InventionActivity:实现UI的实例化,基本的按钮Activity之间跳转 GameActivity:实现UI的实例化,Webview的基本使用 MyProgressDial ...
- 【iOS进阶】UIWebview加载搜狐视频,自动跳回客户端 问题解决
UIWebview加载搜狐视频,自动跳回搜狐客户端 问题解决 当我们用UIWebview(iOS端)加载网页视频的时候,会发现,当真机上有搜狐客户端的时候,会自动跳转到搜狐客户端进行播放,这样的体验对 ...
- Android使用WebView加载H5页面播放视频音频,退出后还在播放问题解决
Android中经常会使用到WebView来加载H5的页面,如果H5页面中有音频或者视频的播放时,还没播放完就退出界面,这个时候会发现音频或者视频还在后台播放,这就有点一脸懵逼了,下面是解决方案: 方 ...
- iOS Cordova 加载远程界面
老大说,我们的项目要hybrid,要实现1.html能调用native:2.本地html调用本地html界面:3.能加载远程界面..... 因为我的项目是已有的(以下简称 项目),所以是要在已有的项目 ...
- 【Android】首次进入应用时加载引导界面
参考文章: [1]http://blog.csdn.net/wsscy2004/article/details/7611529 [2]http://www.androidlearner.net/and ...
- 【iOS系列】-UIWebView加载网页禁止左右滑动
[iOS系列]-UIWebView加载网页禁止左右滑动 问题: 做项目时候,用UIWebView加载网页的时候,要求是和微信网页中打开的网页的效果一样,也即是只能上下滑动,不能左右滑动,也不能缩放. ...
随机推荐
- HDU 1025 Constructing Roads In JGShining's Kingdom[动态规划/nlogn求最长非递减子序列]
Constructing Roads In JGShining's Kingdom Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65 ...
- SQL Server的WAITFOR DELAY注入
SQL Server的WAITFOR DELAY注入 WAITFOR是SQL Server中Transact-SQL提供的一个流程控制语句.它的作用就是等待特定时间,然后继续执行后续的语句.它包含 ...
- luogu P1608 路径统计
题目描述 “RP餐厅”的员工素质就是不一般,在齐刷刷的算出同一个电话号码之后,就准备让HZH,TZY去送快餐了,他们将自己居住的城市画了一张地图,已知在他们的地图上,有N个地方,而且他们目前处在标注为 ...
- 转:Java并发编程:volatile关键字解析
Java并发编程:volatile关键字解析 Java并发编程:volatile关键字解析 volatile这个关键字可能很多朋友都听说过,或许也都用过.在Java 5之前,它是一个备受争议的关键字, ...
- 【iOS】Frame和Bounds的区别以及获取绝对坐标的办法
终于搞清楚了,UIView中的frame获取的是相对于所在ParentView的坐标,而bounds则是指UIView本身的坐标.比如下图(假设A是屏幕): View B的Frame坐标是指相对于Vi ...
- RecyclerView的滚动事件分析
列表的滚动一般分为两种: 手指按下 -> 手指拖拽列表移动 -> 手指停止拖拽 -> 抬起手指 手指按下 -> 手指快速拖拽后抬起手指 -> 列表继续滚动 -> 停 ...
- Android解析Json数据之Gson解析
Gson是谷歌官方提供的解析json数据的工具类.json数据的解析能够使用JSONObject和JSONArray配合使用解析数据,可是这样的原始的方法对于小数据的解析还是有作用的,可是陪到了复杂数 ...
- Python 可视化Twitter中指定话题中Tweet的词汇频率
CODE: #!/usr/bin/python # -*- coding: utf-8 -*- ''' Created on 2014-7-8 @author: guaguastd @name: pl ...
- 将Cocos2d-x游戏打包成Android应用程序
1. 打开Eclipse(已经装好CDT.ADT和NDK),导入cocos2d-x的Android项目. 2. 导入后java的源码会出现编译错误,打开cocos2d-x引擎的根文件夹\cocos2d ...
- 学习使用用Eclipse编写java程序
本文讲解了在Eclipse中完成一个HelloWorld程序的编写过程. 刚刚学习java的同学们可能用 记事本编写java源代码,在命令提示符中完成java程序的编译和运行过程.这样的方法对于学习j ...