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加载网页的时候,要求是和微信网页中打开的网页的效果一样,也即是只能上下滑动,不能左右滑动,也不能缩放. ...
随机推荐
- 洛谷——P2626 斐波那契数列(升级版)
P2626 斐波那契数列(升级版) 题目背景 大家都知道,斐波那契数列是满足如下性质的一个数列: • f(1) = 1 • f(2) = 1 • f(n) = f(n-1) + f(n-2) (n ≥ ...
- require_once(): Failed opening required '/var/www/config/config.php' (include_path='.:') in /var/www/vendor/forkiss/pharest/src/Pharest/Register/Register.php on line 10
环境 docker环境 错误 [Tue Jun 18 18:43:26 2019] 127.0.0.1:53980 [500]: /index.php - require_once(): Failed ...
- Objective-C的self.用法的一些总结
最近有人问我关于什么时候用self.赋值的问题, 我总结了一下, 发出来给大家参考. 有什么问题请大家斧正. 关于什么时间用self. , 其实是和Obj-c的存取方法有关, 不过网上很多人也都这么解 ...
- Form元素示例
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/ ...
- C++测试题练习题1
1.which of the following is not automatically generated by the compiler? a. default constructor b ...
- Node.js自动化测试及大规模性能测试技术实现(Java&Node.JS)
后续计划: 改进1:性能测试Tool由Client端设计成Server端,支持分布式中控部署 改进2:SocketTestFramework集成WebSocket协议 改进3:完善Data Analy ...
- 新版本号的tlplayer for android ,TigerLeapMC for windows公布了
tlplayer for android 新版本号修正了图像倾斜等等问题,添加了动态水印功能. 支持hls(m3u8),http,rtsp,mms,rtmp等网络协议. 声明tlplayer 上的变速 ...
- 微信开源组件WCDB漫谈及Demo
代码地址如下:http://www.demodashi.com/demo/12422.html 前言 移动端的数据库选型一直是一个难题,直到前段时间看到了WeMobileDev(微信前端团队)放出了第 ...
- MySQL常用经典语句
http://www.cnblogs.com/see7di/archive/2010/04/27/2239909.html MySQL常用经典语句 .重命名表ALTER TABLE tbl1 RENA ...
- SVN客户端忽略无关文件
修改前请先备份文件 ~/.subversion/config. 1,打开Terminal,输入命令: $ open ~/.subversion/config 2,在打开的文件中寻找:`global ...