YRSideViewController.m 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335
  1. //
  2. // YRSideViewController.m
  3. // YRSnippets
  4. //
  5. // Created by 王晓宇 on 14-5-10.
  6. // Copyright (c) 2014年 王晓宇. All rights reserved.
  7. //
  8. #import "YRSideViewController.h"
  9. #define SCREEN_WIDTH [UIScreen mainScreen].bounds.size.width
  10. #define SCREEN_HEIGHT [UIScreen mainScreen].bounds.size.height
  11. @interface YRSideViewController ()<UIGestureRecognizerDelegate>{
  12. UIView *_baseView;//目前是_baseView
  13. UIView *_currentView;//其实就是rootViewController.view
  14. UIPanGestureRecognizer *_panGestureRecognizer;
  15. CGPoint _startPanPoint;
  16. CGPoint _lastPanPoint;
  17. BOOL _panMovingRightOrLeft;//true是向右,false是向左
  18. UIButton *_coverButton;
  19. }
  20. @end
  21. @implementation YRSideViewController
  22. - (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil
  23. {
  24. self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil];
  25. if (self) {
  26. // Custom initialization
  27. _leftViewShowWidth = 367;
  28. _rightViewShowWidth = 267;
  29. _animationDuration = 0.35;
  30. _showBoundsShadow = true;
  31. _panGestureRecognizer = [[UIPanGestureRecognizer alloc]initWithTarget:self action:@selector(pan:)];
  32. [_panGestureRecognizer setDelegate:self];
  33. _panMovingRightOrLeft = false;
  34. _lastPanPoint = CGPointZero;
  35. _coverButton = [[UIButton alloc]initWithFrame:CGRectMake(0, 0, SCREEN_WIDTH, SCREEN_HEIGHT)];
  36. [_coverButton addTarget:self action:@selector(hideSideViewController) forControlEvents:UIControlEventTouchUpInside];
  37. }
  38. return self;
  39. }
  40. - (id)init{
  41. return [self initWithNibName:nil bundle:nil];
  42. }
  43. - (void)viewDidLoad
  44. {
  45. [super viewDidLoad];
  46. // Do any additional setup after loading the view.
  47. _baseView = self.view;
  48. [_baseView setBackgroundColor:[UIColor colorWithRed:0.5 green:0.6 blue:0.8 alpha:1]];
  49. self.needSwipeShowMenu = true;
  50. }
  51. - (void)viewWillAppear:(BOOL)animated{
  52. [super viewWillAppear:animated];
  53. if (!self.rootViewController) {
  54. NSAssert(false, @"you must set rootViewController!!");
  55. }
  56. if (_currentView!=_rootViewController.view) {
  57. [_currentView removeFromSuperview];
  58. _currentView=_rootViewController.view;
  59. [_baseView addSubview:_currentView];
  60. _currentView.frame=_baseView.bounds;
  61. }
  62. }
  63. - (void)didReceiveMemoryWarning
  64. {
  65. [super didReceiveMemoryWarning];
  66. // Dispose of any resources that can be recreated.
  67. }
  68. - (void)setRootViewController:(UIViewController *)rootViewController{
  69. if (_rootViewController!=rootViewController) {
  70. if (_rootViewController) {
  71. [_rootViewController removeFromParentViewController];
  72. }
  73. _rootViewController=rootViewController;
  74. if (_rootViewController) {
  75. [self addChildViewController:_rootViewController];
  76. }
  77. }
  78. }
  79. -(void)setLeftViewController:(UIViewController *)leftViewController{
  80. if (_leftViewController!=leftViewController) {
  81. if (_leftViewController) {
  82. [_leftViewController removeFromParentViewController];
  83. }
  84. _leftViewController=leftViewController;
  85. if (_leftViewController) {
  86. [self addChildViewController:_leftViewController];
  87. }
  88. }
  89. }
  90. -(void)setRightViewController:(UIViewController *)rightViewController{
  91. if (_rightViewController!=rightViewController) {
  92. if (_rightViewController) {
  93. [_rightViewController removeFromParentViewController];
  94. }
  95. _rightViewController=rightViewController;
  96. if (_rightViewController) {
  97. [self addChildViewController:_rightViewController];
  98. }
  99. }
  100. }
  101. - (void)setNeedSwipeShowMenu:(BOOL)needSwipeShowMenu{
  102. _needSwipeShowMenu = needSwipeShowMenu;
  103. if (needSwipeShowMenu) {
  104. [_baseView addGestureRecognizer:_panGestureRecognizer];
  105. }else{
  106. [_baseView removeGestureRecognizer:_panGestureRecognizer];
  107. }
  108. }
  109. - (void)showShadow:(BOOL)show{
  110. _currentView.layer.shadowOpacity = show ? 0.8f : 0.0f;
  111. if (show) {
  112. _currentView.layer.cornerRadius = 4.0f;
  113. _currentView.layer.shadowOffset = CGSizeZero;
  114. _currentView.layer.shadowRadius = 4.0f;
  115. _currentView.layer.shadowPath = [UIBezierPath bezierPathWithRect:_currentView.bounds].CGPath;
  116. }
  117. }
  118. #pragma mark ShowOrHideTheView
  119. - (void)willShowLeftViewController{
  120. if (!_leftViewController || _leftViewController.view.superview) {
  121. return;
  122. }
  123. _leftViewController.view.frame=_baseView.bounds;
  124. [_baseView insertSubview:_leftViewController.view belowSubview:_currentView];
  125. if (_rightViewController && _rightViewController.view.superview) {
  126. [_rightViewController.view removeFromSuperview];
  127. }
  128. }
  129. - (void)willShowRightViewController{
  130. if (!_rightViewController || _rightViewController.view.superview) {
  131. return;
  132. }
  133. _rightViewController.view.frame=_baseView.bounds;
  134. [_baseView insertSubview:_rightViewController.view belowSubview:_currentView];
  135. if (_leftViewController && _leftViewController.view.superview) {
  136. [_leftViewController.view removeFromSuperview];
  137. }
  138. }
  139. - (void)showLeftViewController:(BOOL)animated{
  140. if (!_leftViewController) {
  141. return;
  142. }
  143. [self willShowLeftViewController];
  144. NSTimeInterval animatedTime=0;
  145. if (animated) {
  146. animatedTime = ABS(_leftViewShowWidth - _currentView.frame.origin.x) / _leftViewShowWidth * _animationDuration;
  147. }
  148. NSLog(@"=====%f",animatedTime);
  149. [self.delegate shoMenu:@"right"];
  150. [UIView setAnimationCurve:UIViewAnimationCurveEaseInOut];
  151. [UIView animateWithDuration:animatedTime animations:^{
  152. [self layoutCurrentViewWithOffset:_leftViewShowWidth];
  153. [_currentView addSubview:_coverButton];
  154. [self showShadow:_showBoundsShadow];
  155. }];
  156. }
  157. - (void)showRightViewController:(BOOL)animated{
  158. if (!_rightViewController) {
  159. return;
  160. }
  161. [self willShowRightViewController];
  162. NSTimeInterval animatedTime = 0;
  163. if (animated) {
  164. animatedTime = ABS(_rightViewShowWidth + _currentView.frame.origin.x) / _rightViewShowWidth * _animationDuration;
  165. }
  166. NSLog(@"=====%f",animatedTime);
  167. [UIView setAnimationCurve:UIViewAnimationCurveEaseInOut];
  168. [UIView animateWithDuration:animatedTime animations:^{
  169. [self layoutCurrentViewWithOffset:-_rightViewShowWidth];
  170. [_currentView addSubview:_coverButton];
  171. [self showShadow:_showBoundsShadow];
  172. }];
  173. }
  174. - (void)hideSideViewController:(BOOL)animated{
  175. [self showShadow:false];
  176. NSTimeInterval animatedTime = 0;
  177. if (animated) {
  178. animatedTime = ABS(_currentView.frame.origin.x / (_currentView.frame.origin.x>0?_leftViewShowWidth:_rightViewShowWidth)) * _animationDuration;
  179. }
  180. [self.delegate shoMenu:@"left"];
  181. [UIView setAnimationCurve:UIViewAnimationCurveEaseInOut];
  182. [UIView animateWithDuration:animatedTime animations:^{
  183. [self layoutCurrentViewWithOffset:0];
  184. } completion:^(BOOL finished) {
  185. [_coverButton removeFromSuperview];
  186. [_leftViewController.view removeFromSuperview];
  187. [_rightViewController.view removeFromSuperview];
  188. }];
  189. }
  190. - (void)hideSideViewController{
  191. [self hideSideViewController:true];
  192. }
  193. #pragma mark UIGestureRecognizerDelegate
  194. - (BOOL)gestureRecognizerShouldBegin:(UIGestureRecognizer *)gestureRecognizer {
  195. // Check for horizontal pan gesture
  196. if (gestureRecognizer == _panGestureRecognizer) {
  197. UIPanGestureRecognizer *panGesture = (UIPanGestureRecognizer*)gestureRecognizer;
  198. CGPoint translation = [panGesture translationInView:_baseView];
  199. if ([panGesture velocityInView:_baseView].x < 600 && ABS(translation.x)/ABS(translation.y)>1) {
  200. return YES;
  201. }
  202. return NO;
  203. }
  204. return YES;
  205. }
  206. - (void)pan:(UIPanGestureRecognizer*)pan{
  207. if (_panGestureRecognizer.state==UIGestureRecognizerStateBegan) {
  208. _startPanPoint=_currentView.frame.origin;
  209. if (_currentView.frame.origin.x==0) {
  210. [self showShadow:_showBoundsShadow];
  211. }
  212. CGPoint velocity=[pan velocityInView:_baseView];
  213. if(velocity.x>0){
  214. if (_currentView.frame.origin.x>=0 && _leftViewController && !_leftViewController.view.superview) {
  215. [self willShowLeftViewController];
  216. }
  217. }else if (velocity.x<0) {
  218. if (_currentView.frame.origin.x<=0 && _rightViewController && !_rightViewController.view.superview) {
  219. [self willShowRightViewController];
  220. }
  221. }
  222. return;
  223. }
  224. CGPoint currentPostion = [pan translationInView:_baseView];
  225. CGFloat xoffset = _startPanPoint.x + currentPostion.x;
  226. //NSLog(@"======%f",xoffset);
  227. if (xoffset>0) {//向右滑
  228. if (_leftViewController && _leftViewController.view.superview) {
  229. xoffset = xoffset>_leftViewShowWidth?_leftViewShowWidth:xoffset;
  230. }else{
  231. xoffset = 0;
  232. }
  233. }else if(xoffset<0){//向左滑
  234. if (_rightViewController && _rightViewController.view.superview) {
  235. xoffset = xoffset<-_rightViewShowWidth?-_rightViewShowWidth:xoffset;
  236. }else{
  237. xoffset = 0;
  238. }
  239. }
  240. if (xoffset!=_currentView.frame.origin.x) {
  241. [self layoutCurrentViewWithOffset:xoffset];
  242. }
  243. if (_panGestureRecognizer.state==UIGestureRecognizerStateEnded) {
  244. if (_currentView.frame.origin.x!=0 && _currentView.frame.origin.x!=_leftViewShowWidth && _currentView.frame.origin.x!=-_rightViewShowWidth) {
  245. if (_panMovingRightOrLeft && _currentView.frame.origin.x>20) {
  246. [self showLeftViewController:true];
  247. }else if(!_panMovingRightOrLeft && _currentView.frame.origin.x<-20){
  248. [self showRightViewController:true];
  249. }else{
  250. [self hideSideViewController];
  251. }
  252. }else if (_currentView.frame.origin.x==0) {
  253. [self showShadow:false];
  254. }
  255. _lastPanPoint = CGPointZero;
  256. }else{
  257. CGPoint velocity = [pan velocityInView:_baseView];
  258. if (velocity.x>0) {
  259. _panMovingRightOrLeft = true;
  260. }else if(velocity.x<0){
  261. _panMovingRightOrLeft = false;
  262. }
  263. }
  264. }
  265. //重写此方法可以改变动画效果,PS._currentView就是RootViewController.view
  266. - (void)layoutCurrentViewWithOffset:(CGFloat)xoffset{
  267. [self.delegate moveMenu:xoffset];
  268. if (_showBoundsShadow) {
  269. _currentView.layer.shadowPath = [UIBezierPath bezierPathWithRect:_currentView.bounds].CGPath;
  270. }
  271. if (self.rootViewMoveBlock) {//如果有自定义动画,使用自定义的效果
  272. self.rootViewMoveBlock(_currentView,_baseView.bounds,xoffset);
  273. return;
  274. }
  275. /*平移的动画
  276. [_currentView setFrame:CGRectMake(xoffset, _baseView.bounds.origin.y, _baseView.frame.size.width, _baseView.frame.size.height)];
  277. return;
  278. //*/
  279. // /*平移带缩放效果的动画
  280. static CGFloat h2w = 0;
  281. if (h2w==0) {
  282. h2w = _baseView.frame.size.height/_baseView.frame.size.width;
  283. }
  284. CGFloat scale = ABS(1400 - ABS(xoffset)) / 1400;
  285. scale = MAX(0.8, scale);
  286. //NSLog(@"====%f",scale);
  287. _currentView.transform = CGAffineTransformMakeScale(scale, scale);
  288. CGFloat totalWidth=_baseView.frame.size.width;
  289. CGFloat totalHeight=_baseView.frame.size.height;
  290. if (UIInterfaceOrientationIsLandscape(self.interfaceOrientation)) {
  291. totalHeight=_baseView.frame.size.width;
  292. totalWidth=_baseView.frame.size.height;
  293. }
  294. if (xoffset>0) {//向右滑的
  295. [_currentView setFrame:CGRectMake(xoffset, _baseView.bounds.origin.y + (totalHeight * (1 - scale) / 2), totalWidth * scale, totalHeight * scale)];
  296. }else{//向左滑的
  297. [_currentView setFrame:CGRectMake(_baseView.frame.size.width * (1 - scale) + xoffset, _baseView.bounds.origin.y + (totalHeight*(1 - scale) / 2), totalWidth * scale, totalHeight * scale)];
  298. }
  299. //*/
  300. }
  301. @end