全屏滑动返回

来源:互联网 发布:襄阳网站搜索引擎优化 编辑:程序博客网 时间:2024/06/06 01:51

自定义导航

#import <UIKit/UIKit.h>


@interface CJNavigationController : UINavigationController

//是否可以滑动返回

@property (nonatomic,assign) BOOL isCanDragBack;


@end


#import "CJNavigationController.h"



#define CJScreenHeight [UIScreen mainScreen].bounds.size.height

#define CJScreenWidth [UIScreen mainScreen].bounds.size.width


#define CJOffsetFloat  0.65//拉伸参数

#define CJOffetDistance 100//最小回弹距离


@interface CJNavigationController ()


@property(nonatomic,assign) CGPoint mStartPoint;


@property(nonatomic,strong) UIImageView *mLastScreenShotView;


@property (nonatomic, strong) UIView *mBgView;


@property (nonatomic, strong) NSMutableArray *mScreenShots;


@property (nonatomic, assign) BOOL mIsMoving;



@end


@implementation CJNavigationController


- (instancetype)init

{

    self = [super init];

    if (self) {

        self.isCanDragBack = YES;

    }

    return self;

}


-(void)viewDidLoad{

    [super viewDidLoad];

    self.view.layer.shadowOffset = CGSizeMake(0, 10);

    self.view.layer.shadowOpacity = 0.8;

    self.view.layer.shadowRadius = 10;

    self.view.layer.shadowColor = [UIColor blackColor].CGColor;

    UIPanGestureRecognizer *recognizer = [[UIPanGestureRecognizer alloc]initWithTarget:self action:@selector(didHandlePanGesture:)];

    [recognizer delaysTouchesBegan];

    [self.view addGestureRecognizer:recognizer];

}



-(NSMutableArray *)mScreenShots{

    if (!_mScreenShots) {

        _mScreenShots = [NSMutableArray new];

    }

    return _mScreenShots;

}

//初始化截屏的view

-(void)initViews{

    if (!self.mBgView) {

        self.mBgView = [[UIView alloc]initWithFrame:self.view.bounds];

        self.mBgView.backgroundColor = [UIColor blackColor];

        [self.view.superview insertSubview:self.mBgView belowSubview:self.view];

    }

    self.mBgView.hidden = NO;

    if (self.mLastScreenShotView) [self.mLastScreenShotView removeFromSuperview];

    UIImage *lastScreenShot = [self.mScreenShots lastObject];

    self.mLastScreenShotView = [[UIImageView alloc] initWithImage:lastScreenShot];

    self.mLastScreenShotView.frame = (CGRect){-(CJScreenWidth*CJOffsetFloat),0,CJScreenWidth,CJScreenHeight};

    [self.mBgView addSubview:self.mLastScreenShotView];

}

//改变状态栏颜色

-(UIStatusBarStyle)preferredStatusBarStyle{

    UIViewController* topVC = self.topViewController;

    return [topVC preferredStatusBarStyle];

}


- (void)pushViewController:(UIViewController *)viewController animated:(BOOL)animated

{

    if (self.viewControllers.count > 0) {

        [self.mScreenShots addObject:[self capture]];

        NSLog(@"%@",self.mScreenShots);

        //        [self pushAnimation:viewController];

        //        return;

    }

    [super pushViewController:viewController animated:animated];

    

}

-(void)pushAnimation:(UIViewController *)viewController{

    CATransition *animation = [CATransition animation];

    [animation setDuration:0.2];

    [animation setType: kCATransitionMoveIn];

    [animation setSubtype: kCATransitionFromRight];

    [animation setTimingFunction:[CAMediaTimingFunction functionWithName:kCAMediaTimingFunctionDefault]];

    [super pushViewController:viewController animated:NO];

    [self.view.layer addAnimation:animation forKey:nil];

}


- (UIViewController *)popViewControllerAnimated:(BOOL)animated {

    if (animated) {

        [self popAnimation];

        return nil;

    } else {

        return [super popViewControllerAnimated:animated];

    }

}

- (void) popAnimation {

    if (self.viewControllers.count == 1) {

        return;

    }

    [self initViews];

    [UIView animateWithDuration:0.4 animations:^{

        [self doMoveViewWithX:CJScreenWidth];

    } completion:^(BOOL finished) {

        [self completionPanBackAnimation];

    }];

}



- (UIImage *)capture

{

    UIGraphicsBeginImageContextWithOptions(self.view.bounds.size, self.view.opaque, 0.0);

    [self.view.layer renderInContext:UIGraphicsGetCurrentContext()];

    UIImage * img = UIGraphicsGetImageFromCurrentImageContext();

    UIGraphicsEndImageContext();

    return img;

}

#pragma mark ------------  UIPanGestureRecognizer -------


-(void)didHandlePanGesture:(UIPanGestureRecognizer *)recoginzer{

    if (self.viewControllers.count <= 1 && !self.isCanDragBack) return;

    CGPoint touchPoint = [recoginzer locationInView:[[UIApplication sharedApplication]keyWindow]];

    

    CGFloat offsetX = touchPoint.x - self.mStartPoint.x;

    if(recoginzer.state == UIGestureRecognizerStateBegan)

    {

        [self initViews];

        _mIsMoving = YES;

        _mStartPoint = touchPoint;

        offsetX = 0;

    }

    

    if(recoginzer.state == UIGestureRecognizerStateEnded)

    {

        if (offsetX > CJOffetDistance)

        {

            [UIView animateWithDuration:0.3 animations:^{

                [self doMoveViewWithX:CJScreenWidth];

            } completion:^(BOOL finished) {

                [self completionPanBackAnimation];

                

                self.mIsMoving = NO;

            }];

        }else{

            [UIView animateWithDuration:0.3 animations:^{

                [self doMoveViewWithX:0];

            } completion:^(BOOL finished) {

                self.mIsMoving = NO;

                self.mBgView.hidden = YES;

            }];

        }

        self.mIsMoving = NO;

    }

    if(recoginzer.state == UIGestureRecognizerStateCancelled)

    {

        [UIView animateWithDuration:0.3 animations:^{

            [self doMoveViewWithX:0];

        } completion:^(BOOL finished) {

            self.mIsMoving = NO;

            self.mBgView.hidden = YES;

        }];

        self.mIsMoving = NO;

    }

    if (self.mIsMoving) {

        [self doMoveViewWithX:offsetX];

    }

}

-(void)doMoveViewWithX:(CGFloat)x{

    x = x>CJScreenWidth?CJScreenWidth:x;

    x = x<0?0:x;

    CGRect frame = self.view.frame;

    frame.origin.x = x;

    self.view.frame = frame;

    self.mLastScreenShotView.frame = (CGRect){-(CJScreenWidth*CJOffsetFloat)+x*CJOffsetFloat,0,CJScreenWidth,CJScreenHeight};

}

-(void)completionPanBackAnimation{

    [self.mScreenShots removeLastObject];

    [super popViewControllerAnimated:NO];

    CGRect frame = self.view.frame;

    frame.origin.x = 0;

    self.view.frame = frame;

    self.mBgView.hidden = YES;

}



@end



0 0