123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335 |
- //
- // YRSideViewController.m
- // YRSnippets
- //
- // Created by 王晓宇 on 14-5-10.
- // Copyright (c) 2014年 王晓宇. All rights reserved.
- //
- #import "YRSideViewController.h"
- #define SCREEN_WIDTH [UIScreen mainScreen].bounds.size.width
- #define SCREEN_HEIGHT [UIScreen mainScreen].bounds.size.height
- @interface YRSideViewController ()<UIGestureRecognizerDelegate>{
- UIView *_baseView;//目前是_baseView
- UIView *_currentView;//其实就是rootViewController.view
-
- UIPanGestureRecognizer *_panGestureRecognizer;
-
- CGPoint _startPanPoint;
- CGPoint _lastPanPoint;
- BOOL _panMovingRightOrLeft;//true是向右,false是向左
-
- UIButton *_coverButton;
- }
- @end
- @implementation YRSideViewController
- - (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil
- {
- self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil];
- if (self) {
- // Custom initialization
- _leftViewShowWidth = 367;
- _rightViewShowWidth = 267;
- _animationDuration = 0.35;
- _showBoundsShadow = true;
-
- _panGestureRecognizer = [[UIPanGestureRecognizer alloc]initWithTarget:self action:@selector(pan:)];
- [_panGestureRecognizer setDelegate:self];
-
- _panMovingRightOrLeft = false;
- _lastPanPoint = CGPointZero;
-
- _coverButton = [[UIButton alloc]initWithFrame:CGRectMake(0, 0, SCREEN_WIDTH, SCREEN_HEIGHT)];
- [_coverButton addTarget:self action:@selector(hideSideViewController) forControlEvents:UIControlEventTouchUpInside];
- }
- return self;
- }
- - (id)init{
- return [self initWithNibName:nil bundle:nil];
- }
- - (void)viewDidLoad
- {
- [super viewDidLoad];
- // Do any additional setup after loading the view.
- _baseView = self.view;
- [_baseView setBackgroundColor:[UIColor colorWithRed:0.5 green:0.6 blue:0.8 alpha:1]];
- self.needSwipeShowMenu = true;
- }
- - (void)viewWillAppear:(BOOL)animated{
- [super viewWillAppear:animated];
- if (!self.rootViewController) {
- NSAssert(false, @"you must set rootViewController!!");
- }
- if (_currentView!=_rootViewController.view) {
-
- [_currentView removeFromSuperview];
- _currentView=_rootViewController.view;
- [_baseView addSubview:_currentView];
- _currentView.frame=_baseView.bounds;
-
- }
- }
- - (void)didReceiveMemoryWarning
- {
- [super didReceiveMemoryWarning];
- // Dispose of any resources that can be recreated.
- }
- - (void)setRootViewController:(UIViewController *)rootViewController{
- if (_rootViewController!=rootViewController) {
- if (_rootViewController) {
- [_rootViewController removeFromParentViewController];
- }
- _rootViewController=rootViewController;
- if (_rootViewController) {
- [self addChildViewController:_rootViewController];
- }
- }
- }
- -(void)setLeftViewController:(UIViewController *)leftViewController{
- if (_leftViewController!=leftViewController) {
- if (_leftViewController) {
- [_leftViewController removeFromParentViewController];
- }
- _leftViewController=leftViewController;
- if (_leftViewController) {
- [self addChildViewController:_leftViewController];
- }
- }
- }
- -(void)setRightViewController:(UIViewController *)rightViewController{
- if (_rightViewController!=rightViewController) {
- if (_rightViewController) {
- [_rightViewController removeFromParentViewController];
- }
- _rightViewController=rightViewController;
- if (_rightViewController) {
- [self addChildViewController:_rightViewController];
- }
- }
- }
- - (void)setNeedSwipeShowMenu:(BOOL)needSwipeShowMenu{
- _needSwipeShowMenu = needSwipeShowMenu;
- if (needSwipeShowMenu) {
- [_baseView addGestureRecognizer:_panGestureRecognizer];
- }else{
- [_baseView removeGestureRecognizer:_panGestureRecognizer];
- }
- }
- - (void)showShadow:(BOOL)show{
- _currentView.layer.shadowOpacity = show ? 0.8f : 0.0f;
- if (show) {
- _currentView.layer.cornerRadius = 4.0f;
- _currentView.layer.shadowOffset = CGSizeZero;
- _currentView.layer.shadowRadius = 4.0f;
- _currentView.layer.shadowPath = [UIBezierPath bezierPathWithRect:_currentView.bounds].CGPath;
- }
- }
- #pragma mark ShowOrHideTheView
- - (void)willShowLeftViewController{
- if (!_leftViewController || _leftViewController.view.superview) {
- return;
- }
- _leftViewController.view.frame=_baseView.bounds;
- [_baseView insertSubview:_leftViewController.view belowSubview:_currentView];
- if (_rightViewController && _rightViewController.view.superview) {
- [_rightViewController.view removeFromSuperview];
- }
- }
- - (void)willShowRightViewController{
- if (!_rightViewController || _rightViewController.view.superview) {
- return;
- }
- _rightViewController.view.frame=_baseView.bounds;
- [_baseView insertSubview:_rightViewController.view belowSubview:_currentView];
- if (_leftViewController && _leftViewController.view.superview) {
- [_leftViewController.view removeFromSuperview];
- }
- }
- - (void)showLeftViewController:(BOOL)animated{
- if (!_leftViewController) {
- return;
- }
-
- [self willShowLeftViewController];
- NSTimeInterval animatedTime=0;
- if (animated) {
- animatedTime = ABS(_leftViewShowWidth - _currentView.frame.origin.x) / _leftViewShowWidth * _animationDuration;
- }
- NSLog(@"=====%f",animatedTime);
- [self.delegate shoMenu:@"right"];
- [UIView setAnimationCurve:UIViewAnimationCurveEaseInOut];
- [UIView animateWithDuration:animatedTime animations:^{
- [self layoutCurrentViewWithOffset:_leftViewShowWidth];
- [_currentView addSubview:_coverButton];
- [self showShadow:_showBoundsShadow];
- }];
- }
- - (void)showRightViewController:(BOOL)animated{
- if (!_rightViewController) {
- return;
- }
- [self willShowRightViewController];
- NSTimeInterval animatedTime = 0;
- if (animated) {
- animatedTime = ABS(_rightViewShowWidth + _currentView.frame.origin.x) / _rightViewShowWidth * _animationDuration;
- }
- NSLog(@"=====%f",animatedTime);
- [UIView setAnimationCurve:UIViewAnimationCurveEaseInOut];
- [UIView animateWithDuration:animatedTime animations:^{
- [self layoutCurrentViewWithOffset:-_rightViewShowWidth];
- [_currentView addSubview:_coverButton];
- [self showShadow:_showBoundsShadow];
- }];
- }
- - (void)hideSideViewController:(BOOL)animated{
- [self showShadow:false];
- NSTimeInterval animatedTime = 0;
- if (animated) {
- animatedTime = ABS(_currentView.frame.origin.x / (_currentView.frame.origin.x>0?_leftViewShowWidth:_rightViewShowWidth)) * _animationDuration;
- }
- [self.delegate shoMenu:@"left"];
- [UIView setAnimationCurve:UIViewAnimationCurveEaseInOut];
- [UIView animateWithDuration:animatedTime animations:^{
- [self layoutCurrentViewWithOffset:0];
- } completion:^(BOOL finished) {
- [_coverButton removeFromSuperview];
- [_leftViewController.view removeFromSuperview];
- [_rightViewController.view removeFromSuperview];
- }];
- }
- - (void)hideSideViewController{
- [self hideSideViewController:true];
- }
- #pragma mark UIGestureRecognizerDelegate
- - (BOOL)gestureRecognizerShouldBegin:(UIGestureRecognizer *)gestureRecognizer {
- // Check for horizontal pan gesture
- if (gestureRecognizer == _panGestureRecognizer) {
- UIPanGestureRecognizer *panGesture = (UIPanGestureRecognizer*)gestureRecognizer;
- CGPoint translation = [panGesture translationInView:_baseView];
- if ([panGesture velocityInView:_baseView].x < 600 && ABS(translation.x)/ABS(translation.y)>1) {
- return YES;
- }
- return NO;
- }
- return YES;
- }
- - (void)pan:(UIPanGestureRecognizer*)pan{
- if (_panGestureRecognizer.state==UIGestureRecognizerStateBegan) {
- _startPanPoint=_currentView.frame.origin;
- if (_currentView.frame.origin.x==0) {
- [self showShadow:_showBoundsShadow];
- }
- CGPoint velocity=[pan velocityInView:_baseView];
-
-
- if(velocity.x>0){
- if (_currentView.frame.origin.x>=0 && _leftViewController && !_leftViewController.view.superview) {
- [self willShowLeftViewController];
- }
- }else if (velocity.x<0) {
- if (_currentView.frame.origin.x<=0 && _rightViewController && !_rightViewController.view.superview) {
- [self willShowRightViewController];
- }
- }
- return;
- }
- CGPoint currentPostion = [pan translationInView:_baseView];
- CGFloat xoffset = _startPanPoint.x + currentPostion.x;
- //NSLog(@"======%f",xoffset);
-
-
-
- if (xoffset>0) {//向右滑
- if (_leftViewController && _leftViewController.view.superview) {
- xoffset = xoffset>_leftViewShowWidth?_leftViewShowWidth:xoffset;
- }else{
- xoffset = 0;
- }
- }else if(xoffset<0){//向左滑
- if (_rightViewController && _rightViewController.view.superview) {
- xoffset = xoffset<-_rightViewShowWidth?-_rightViewShowWidth:xoffset;
- }else{
- xoffset = 0;
- }
- }
- if (xoffset!=_currentView.frame.origin.x) {
- [self layoutCurrentViewWithOffset:xoffset];
- }
- if (_panGestureRecognizer.state==UIGestureRecognizerStateEnded) {
- if (_currentView.frame.origin.x!=0 && _currentView.frame.origin.x!=_leftViewShowWidth && _currentView.frame.origin.x!=-_rightViewShowWidth) {
- if (_panMovingRightOrLeft && _currentView.frame.origin.x>20) {
- [self showLeftViewController:true];
- }else if(!_panMovingRightOrLeft && _currentView.frame.origin.x<-20){
- [self showRightViewController:true];
- }else{
- [self hideSideViewController];
- }
- }else if (_currentView.frame.origin.x==0) {
- [self showShadow:false];
- }
- _lastPanPoint = CGPointZero;
- }else{
- CGPoint velocity = [pan velocityInView:_baseView];
- if (velocity.x>0) {
- _panMovingRightOrLeft = true;
- }else if(velocity.x<0){
- _panMovingRightOrLeft = false;
- }
- }
- }
- //重写此方法可以改变动画效果,PS._currentView就是RootViewController.view
- - (void)layoutCurrentViewWithOffset:(CGFloat)xoffset{
-
- [self.delegate moveMenu:xoffset];
- if (_showBoundsShadow) {
- _currentView.layer.shadowPath = [UIBezierPath bezierPathWithRect:_currentView.bounds].CGPath;
- }
- if (self.rootViewMoveBlock) {//如果有自定义动画,使用自定义的效果
- self.rootViewMoveBlock(_currentView,_baseView.bounds,xoffset);
- return;
- }
- /*平移的动画
- [_currentView setFrame:CGRectMake(xoffset, _baseView.bounds.origin.y, _baseView.frame.size.width, _baseView.frame.size.height)];
- return;
- //*/
-
- // /*平移带缩放效果的动画
- static CGFloat h2w = 0;
- if (h2w==0) {
- h2w = _baseView.frame.size.height/_baseView.frame.size.width;
- }
- CGFloat scale = ABS(1400 - ABS(xoffset)) / 1400;
- scale = MAX(0.8, scale);
- //NSLog(@"====%f",scale);
- _currentView.transform = CGAffineTransformMakeScale(scale, scale);
-
- CGFloat totalWidth=_baseView.frame.size.width;
- CGFloat totalHeight=_baseView.frame.size.height;
- if (UIInterfaceOrientationIsLandscape(self.interfaceOrientation)) {
- totalHeight=_baseView.frame.size.width;
- totalWidth=_baseView.frame.size.height;
- }
-
- if (xoffset>0) {//向右滑的
- [_currentView setFrame:CGRectMake(xoffset, _baseView.bounds.origin.y + (totalHeight * (1 - scale) / 2), totalWidth * scale, totalHeight * scale)];
- }else{//向左滑的
- [_currentView setFrame:CGRectMake(_baseView.frame.size.width * (1 - scale) + xoffset, _baseView.bounds.origin.y + (totalHeight*(1 - scale) / 2), totalWidth * scale, totalHeight * scale)];
- }
- //*/
- }
- @end
|