分享

IOS仿网易新闻客户端左右侧栏

 ccccshq 2014-06-26


左右侧栏已经是当前APP最流行的布局,很多客户端软件都使用了左右侧栏,例如网易新闻,人人网,Weico等等。

这篇博客以当前网易新闻客户端的模式为例仿写了一个左右侧栏架构实现。


先看一下Demo的实现效果

   


实现主要思路以及细节:

视图控制器有三个视图按不同层次排列,最上层的是主要显示视图_mainContentView,下面的为左右侧栏视图;

点击左侧栏不同按钮压入不同的主视图控制器;

在显示侧栏时点击视图空白区域闭合,利用tap手势;

拖动主页面根据不同的方向和位置进行移动和缩放, 利用pan手势;

向右拖显示左侧栏,向左拖显示右侧栏;


首先,点击左侧栏时,左侧栏将点击的数据模型传给分栏控制器,让其更改主视图内容

模型:

  1. @interface ClassModel : NSObject  
  2.   
  3. @property (strong, nonatomic) NSString *title;  
  4. @property (strong, nonatomic) NSString *className;  
  5. @property (strong, nonatomic) NSString *contentText;  
  6. @property (strong, nonatomic) NSString *imageName;  
  7.   
  8. + (id)classModelWithTitle:(NSString *)title className:(NSString *)className contentText:(NSString *)text andImageName:(NSString *)imageName;  
  9.   
  10. @end  

一个工厂方法,模型存入不同选择下的不同视图控制器的具体内容。

以新闻页为例:

ClassModel *newscm = [ClassModel classModelWithTitle:@"新闻" className:@"NewsViewController" contentText:@"新闻视图内容" andImageName:@"sidebar_nav_news"];


来看主视图切换不同界面的方法:

  1. - (void)showContentControllerWithModel:(ClassModel *)model  
  2. {  
  3.     [self closeSideBar];  
  4.       
  5.     UIViewController *controller = _controllersDict[model.className];  
  6.     if (!controller)  
  7.     {  
  8.         Class c = NSClassFromString(model.className);  
  9.         HRViewController *vc = [[c alloc] init];  
  10.         controller = [[UINavigationController alloc] initWithRootViewController:vc];  
  11.           
  12.         vc.contentText = model.contentText;  
  13.         [_controllersDict setObject:controller forKey:model.className];  
  14.     }  
  15.       
  16.     if (_mainContentView.subviews.count > 0)  
  17.     {  
  18.         UIView *view = [_mainContentView.subviews firstObject];  
  19.         [view removeFromSuperview];  
  20.     }  
  21.       
  22.     controller.view.frame = _mainContentView.frame;  
  23.     [_mainContentView addSubview:controller.view];  
  24. }  

中间省略了配置导航栏的内容。

这个方法中又一个[_mainContentView.subviews firstObject]方法,这个方法是IOS7才有的,按以前习惯写[0]也好。


实现视图移动动画主要是通过仿射变换来实现的,也有的例子通过操作frame,看习惯了。


一个根据方向返回仿射变换值的私有方法

  1. - (CGAffineTransform)transformWithDirection:(RMoveDirection)direction  
  2. {  
  3.     CGFloat translateX = 0;  
  4.     switch (direction) {  
  5.         case RMoveDirectionLeft:  
  6.             translateX = -RContentOffset;  
  7.             break;  
  8.         case RMoveDirectionRight:  
  9.             translateX = RContentOffset;  
  10.             break;  
  11.         default:  
  12.             break;  
  13.     }  
  14.       
  15.     MyLog(@"%.2f",translateX);  
  16.     CGAffineTransform transT = CGAffineTransformMakeTranslation(translateX, 0);  
  17.     CGAffineTransform scaleT = CGAffineTransformMakeScale(1.0, RContentScale);  
  18.     CGAffineTransform conT = CGAffineTransformConcat(transT, scaleT);  
  19.       
  20.     return conT;  
  21. }  

一个根据方向配置页面的阴影效果的私有方法

  1. - (void)configureViewShadowWithDirection:(RMoveDirection)direction  
  2. {  
  3.     CGFloat shadowW;  
  4.     switch (direction)  
  5.     {  
  6.         case RMoveDirectionLeft:  
  7.             shadowW = 2.0f;  
  8.             break;  
  9.         case RMoveDirectionRight:  
  10.             shadowW = -2.0f;  
  11.             break;  
  12.         default:  
  13.             break;  
  14.     }  
  15.       
  16.     _mainContentView.layer.shadowOffset = CGSizeMake(shadowW, 1.0);  
  17.     _mainContentView.layer.shadowColor = [UIColor blackColor].CGColor;  
  18.     _mainContentView.layer.shadowOpacity = 0.8f;  
  19. }  

点击导航栏左侧按钮的展开侧栏方法(右侧类似)

  1. - (void)leftItemClick  
  2. {  
  3.     CGAffineTransform conT = [self transformWithDirection:RMoveDirectionRight];  
  4.       
  5.     [self.view sendSubviewToBack:_rightSideView];  
  6.     [self configureViewShadowWithDirection:RMoveDirectionRight];  
  7.       
  8.     [UIView animateWithDuration:ROpenDuration  
  9.                      animations:^{  
  10.                          _mainContentView.transform = conT;  
  11.                      }  
  12.                      completion:^(BOOL finished) {  
  13.                          _tapGestureRec.enabled = YES;  
  14.                      }];  
  15. }  


关闭侧栏返回主页面的方法

  1. - (void)closeSideBar  
  2. {  
  3.     CGAffineTransform oriT = CGAffineTransformIdentity;  
  4.     [UIView animateWithDuration:RCloseDuration  
  5.                      animations:^{  
  6.                          _mainContentView.transform = oriT;  
  7.                      }  
  8.                      completion:^(BOOL finished) {  
  9.                          _tapGestureRec.enabled = NO;  
  10.                      }];  
  11. }  


最后是最重要的,手势拖动的实现方法


  1. - (void)moveViewWithGesture:(UIPanGestureRecognizer *)panGes  
  2. {  
  3.     static CGFloat currentTranslateX;  
  4.     if (panGes.state == UIGestureRecognizerStateBegan)  
  5.     {  
  6.         currentTranslateX = _mainContentView.transform.tx;  
  7.     }  
  8.     if (panGes.state == UIGestureRecognizerStateChanged)  
  9.     {  
  10.         CGFloat transX = [panGes translationInView:_mainContentView].x;  
  11.         transX = transX + currentTranslateX;  
  12.           
  13.         CGFloat sca;  
  14.         if (transX > 0)  
  15.         {  
  16.             [self.view sendSubviewToBack:_rightSideView];  
  17.             [self configureViewShadowWithDirection:RMoveDirectionRight];  
  18.               
  19.             if (_mainContentView.frame.origin.x < RContentOffset)  
  20.             {  
  21.                 sca = 1 - (_mainContentView.frame.origin.x/RContentOffset) * (1-RContentScale);  
  22.             }  
  23.             else  
  24.             {  
  25.                 sca = RContentScale;  
  26.             }  
  27.         }  
  28.         else    //transX < 0  
  29.         {  
  30.             [self.view sendSubviewToBack:_leftSideView];  
  31.             [self configureViewShadowWithDirection:RMoveDirectionLeft];  
  32.               
  33.             if (_mainContentView.frame.origin.x > -RContentOffset)  
  34.             {  
  35.                 sca = 1 - (-_mainContentView.frame.origin.x/RContentOffset) * (1-RContentScale);  
  36.             }  
  37.             else  
  38.             {  
  39.                 sca = RContentScale;  
  40.             }  
  41.         }  
  42.         CGAffineTransform transS = CGAffineTransformMakeScale(1.0, sca);  
  43.         CGAffineTransform transT = CGAffineTransformMakeTranslation(transX, 0);  
  44.           
  45.         CGAffineTransform conT = CGAffineTransformConcat(transT, transS);  
  46.           
  47.         _mainContentView.transform = conT;  
  48.     }  
  49.     else if (panGes.state == UIGestureRecognizerStateEnded)  
  50.     {  
  51.         CGFloat panX = [panGes translationInView:_mainContentView].x;  
  52.         CGFloat finalX = currentTranslateX + panX;  
  53.         if (finalX > RJudgeOffset)  
  54.         {  
  55.             CGAffineTransform conT = [self transformWithDirection:RMoveDirectionRight];  
  56.             [UIView beginAnimations:nil context:nil];  
  57.             _mainContentView.transform = conT;  
  58.             [UIView commitAnimations];  
  59.               
  60.             _tapGestureRec.enabled = YES;  
  61.             return;  
  62.         }  
  63.         if (finalX < -RJudgeOffset)  
  64.         {  
  65.             CGAffineTransform conT = [self transformWithDirection:RMoveDirectionLeft];  
  66.             [UIView beginAnimations:nil context:nil];  
  67.             _mainContentView.transform = conT;  
  68.             [UIView commitAnimations];  
  69.               
  70.             _tapGestureRec.enabled = YES;  
  71.             return;  
  72.         }  
  73.         else  
  74.         {  
  75.             CGAffineTransform oriT = CGAffineTransformIdentity;  
  76.             [UIView beginAnimations:nil context:nil];  
  77.             _mainContentView.transform = oriT;  
  78.             [UIView commitAnimations];  
  79.               
  80.             _tapGestureRec.enabled = NO;  
  81.         }  
  82.     }  
  83. }  


根据不同的状态设置不同状态下的仿射变换值,来赋给_mainContentView,在到达临界状态后,该视图的缩放不再进行。

当拖动手势结束后,根据拖动的位置,来确定视图如何进行移动。

这个例子主要的代码都贴在了上面,这里的素材是随便取的。现在的网易客户端的侧栏背景为深色视图,左侧栏栏目跟这个demo差不多。



Demo源码:点击打开链接



以上就是本篇博客全部内容,欢迎指正和交流。转载注明出处~~

    本站是提供个人知识管理的网络存储空间,所有内容均由用户发布,不代表本站观点。请注意甄别内容中的联系方式、诱导购买等信息,谨防诈骗。如发现有害或侵权内容,请点击一键举报。
    转藏 分享 献花(0

    0条评论

    发表

    请遵守用户 评论公约

    类似文章 更多