抽屉效果

一.RESideMenu

现在大多App的主框架都是UITabBarController加若干导航控制器或者是带有抽屉效果的框架,抽屉效果最明显的运用就是在QQ上,之前项目中运用到抽屉效果,运用的是Git上的一个第三方库RESideMenu(6000多star),当时没有太多的时间去研究其内部代码,如今有了点时间就研究了一下其内部实现,自己写了一个简单的demo.抽屉效果的实现看似简单,感觉加上两个手势就可以搞定,其实其内部实现是比较麻烦的,自己写的demo也只是简单实现了一下效果,远不及RESideMenu那样封装的出色.RESideMenu方便快捷,个人感觉封装的极好.而且作者在Examples中提供了两套解决方案,一套纯代码,一套StoryBoard,适用于不同情况的开发者.[RESideMenu下载地址]
(https://github.com/romaonthego/RESideMenu.git)

RESideMenu示例.gif

二.MYDemo

自己写的小示例的整体思想是创建一个MenuController,在这个菜单控制器上添加一个左侧菜单视图和一个根视图(MenController引用两个控制器,取它们视图添加到自己的view上,这样方便把事件分模块处理,特别是左侧菜单控制器),在根视图上添加左右滑动的手势(此处用的是UISwipeGestureRecognizer轻扫手势,而RESideMenu用的是拖动手势UIPanGestureRecognizer,轻扫手势一次势触发改变菜单视图和根视图frame的方法,而拖动手势可以连续实时拖动,触发其改变frame的方法,它触发变frame的方法代码就有150多行,他是根据偏移量判断拖动的方向和状态,逻辑比较复杂,而我用的轻扫手势触发的改变frame的方法仅仅是一次性改变,没有连续拖动的效果,只实现了一个简单的抽屉效果)

  • 创建MenuController类
    MenuController .h文件
    @interface MenuViewController : UIViewController
    /// 左侧抽屉控制器
    @property (nonatomic, strong) UIViewController *leftVC;
    /// 根视图控制器
    @property (nonatomic, strong) UIViewController *rootVC;
    /// 记录是否打开抽屉,默认是关闭
    @property (nonatomic, assign) BOOL isDisplayMenu;

    ///  根视图控制器的初始化方法
    - (instancetype)initWithRootViewController:(UIViewController *)controller;
    @end
    

MenuController .m文件
#import "MenuViewController.h"

   @interface MenuViewController ()
  //向左轻扫手势
  @property (nonatomic, strong) UISwipeGestureRecognizer *leftSwipe;
  //向右轻扫手势
  @property (nonatomic, strong) UISwipeGestureRecognizer *rightSwipe;
  @end

  @implementation MenuViewController

   ///  根视图控制器的初始化方法
  -(instancetype)initWithRootViewController:(UIViewController *)controller
  {
      if (self = [super init]) {
      self.rootVC = controller;
  }
        return self;
   }

  - (void)viewDidLoad {
      [super viewDidLoad];

  }

    #pragma mark 设置导航栏控制器左侧按钮

      ///  rootVC根控制器是导航栏控制器的时候才能设置 所以要加上判读
     - (void)setLeftBarButton{
           if (self.rootVC == nil) {
    return;
    }
      //判断根控制器是否为导航控制器 因为只有导航控制器才有navigationBar
       if ([self.rootVC isKindOfClass:[UINavigationController class]]) {
           UIBarButtonItem *leftBarButtonItem = [[UIBarButtonItem alloc]initWithImage:[UIImage imageNamed:@"bianji"] style:UIBarButtonItemStylePlain target:self action:@selector(leftBarbuttonAction:)];
    
           UINavigationController *naVC =(UINavigationController *) self.rootVC;
           naVC.navigationBar.tintColor = [UIColor lightGrayColor];
           //取出导航控制器管理的控制器数组中第一个控制器
           UIViewController *firstVC = [[naVC viewControllers]objectAtIndex:0];
           firstVC.navigationItem.leftBarButtonItem = leftBarButtonItem;
    
    }
  }

     #pragma mark 导航栏左侧菜单按钮点击事件

    - (void)leftBarbuttonAction:(UIBarButtonItem *)button{
       //先判断当前状态是打开还是关闭
       if (self.isDisplayMenu) {
           [self hiddenLeftMenu];
       }else{
           [self showLeftMenu];
       }
   }

   #pragma mark setter && getter

   - (UISwipeGestureRecognizer *)leftSwipe
   {
       if (_leftSwipe == nil) {
           _leftSwipe = [[UISwipeGestureRecognizer alloc]initWithTarget:self        action:@selector(leftAction:)];
            _leftSwipe.direction = UISwipeGestureRecognizerDirectionLeft;
        }
       return _leftSwipe;
    }

    - (UISwipeGestureRecognizer *)rightSwipe
   {
       if (_rightSwipe == nil) {
           _rightSwipe = [[UISwipeGestureRecognizer alloc]initWithTarget:self     action:@selector(rightAction:)];
           }
          return _rightSwipe;
   }

   - (void)setLeftVC:(UIViewController *)leftVC
   {
       _leftVC = leftVC;
   }

   - (void)setRootVC:(UIViewController *)rootVC
   {
       _rootVC = rootVC;
       if (_rootVC) {
            //取出根视图控制器视图 添加到MenuViewVC的view上
           UIView *view = rootVC.view;
           view.frame = self.view.bounds;
           [self.view addSubview:view];
    
           //添加左右手势
          [view addGestureRecognizer:self.leftSwipe];
          [view addGestureRecognizer:self.rightSwipe];
    
           //设置导航栏左侧按钮
           [self setLeftBarButton];
     }
   }

  #pragma mark 手势回调方法

   - (void)leftAction:(UISwipeGestureRecognizer *)left{
      [self hiddenLeftMenu];
    }

  - (void)rightAction:(UISwipeGestureRecognizer *)right{
       [self showLeftMenu];
   }

    #pragma mark 显示和隐藏左侧菜单

   ///  显示左侧菜单
  - (void)showLeftMenu{
     //拿到左侧控制器视图
     UIView *leftView = self.leftVC.view;
     CGRect frame = self.view.frame;
     frame.size.width = 100;
     //设置菜单的大小 宽度100
     leftView.frame = frame;

     [self.view insertSubview:leftView atIndex:0];

      //移动菜单的根视图
      frame = _rootVC.view.frame;
      frame.origin.x = 100;
      [UIView animateWithDuration:0.5 animations:^{
           _rootVC.view.frame = frame;
          self.isDisplayMenu = YES;
      }];
   }

  ///  隐藏左侧菜单
  - (void)hiddenLeftMenu{
       CGRect frame = _rootVC.view.frame;
      frame.origin.x = 0;
      [UIView animateWithDuration:0.5 animations:^{
          _rootVC.view.frame = frame;
         self.isDisplayMenu = NO;
      }];
  }
  • 创建LeftViewController左侧菜单类
    LeftViewController .h文件
    #import <UIKit/UIKit.h>

      @interface LeftViewController : UIViewController
      ///  标题数组
      @property (nonatomic, strong) NSMutableArray *leftTitleArray;
      ///  控制器数组
      @property (nonatomic, strong) NSMutableArray *viewControllers;
      @end
    

LeftViewController .m文件
#import "LeftViewController.h"
#import "AppDelegate.h"
static NSString *reuseID = @"cell";

    @interface LeftViewController ()<UITableViewDelegate,UITableViewDataSource>
    @property (nonatomic, strong) UITableView *tableView;
    @end

    @implementation LeftViewController

   - (void)viewDidLoad {
       [super viewDidLoad];
       [self prepareForTableView];
   }

   - (void)prepareForTableView{
         CGRect frame = self.view.bounds;
         frame.origin.y = 64;
         self.tableView.frame = frame;
         self.tableView.delegate = self;
         self.tableView.dataSource = self;
         self.tableView.backgroundColor = [UIColor lightGrayColor];
        [self.view addSubview:self.tableView];
        [self.tableView registerClass:[UITableViewCell class] forCellReuseIdentifier:reuseID];
  }

    #pragma mark - UItabelViewDelegate && DataSource

    - (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection: (NSInteger)section
     {
         return self.leftTitleArray.count;
     }

    - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
    {
         UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:reuseID  forIndexPath:indexPath];
         cell.textLabel.text = self.leftTitleArray[indexPath.row];
         return cell;
    }

    - (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
    {
            //判断控制器数组是否存在 并且个数是否与标题个数一致
           if (self.viewControllers && self.leftTitleArray.count == self.viewControllers.count) {
                 AppDelegate *appDelegate = [[UIApplication sharedApplication] delegate];
                 //取到根视图控制器
                 MenuViewController *menuVC = appDelegate.menuVC;
                 menuVC.isDisplayMenu = NO;
                 UINavigationController *naVC = [[UINavigationController   alloc]initWithRootViewController:self.viewControllers[indexPath.row]];
                //重新设置菜单控制器的根控制器
                [menuVC setRootVC:naVC];
              }
       }

    - (UITableView *)tableView
       {
              if (_tableView == nil) {
               _tableView = [[UITableView alloc]init];
        }
           return _tableView;
       }
  • 至此关于抽屉效果的两个类完成了,在APPDelegate中引用
    AppDelegate.h文件
    #import <UIKit/UIKit.h>
    #import "MenuViewController.h"

    @interface AppDelegate : UIResponder <UIApplicationDelegate>
    
    @property (strong, nonatomic) UIWindow *window;
    @property (nonatomic, strong) MenuViewController *menuVC;
    
    @end
    

AppDelegate.m文件
#import "AppDelegate.h"
#import "MenuViewController.h"
#import "LeftViewController.h"
@interface AppDelegate ()

  @end

  @implementation AppDelegate

  - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:     (NSDictionary *)launchOptions {
        self.window = [[UIWindow alloc]initWithFrame:[UIScreen mainScreen].bounds];
        UITableViewController *tableVC = [[UITableViewController alloc]init];
        UINavigationController *naVC = [[UINavigationController  alloc]initWithRootViewController:tableVC];
        //设置菜单控制器根控制器
        self.menuVC = [[MenuViewController alloc]initWithRootViewController:naVC];
        //设置菜单控制器的左侧控制器
        LeftViewController *leftVC = [[LeftViewController alloc]init];
        leftVC.leftTitleArray = [NSMutableArray arrayWithObjects:@"个人",@"共享", nil];
        UIViewController *firstVC = [[UIViewController alloc]init];
        firstVC.view.backgroundColor = [UIColor brownColor];
        UIViewController *secondVC = [[UIViewController alloc]init];
        secondVC.view.backgroundColor = [UIColor orangeColor];
        leftVC.viewControllers = [NSMutableArray arrayWithObjects:firstVC,secondVC, nil];
        _menuVC.leftVC = leftVC;
        leftVC.view.backgroundColor = [UIColor grayColor];
        //设置window的根控制器为菜单控制器
        self.window.rootViewController = _menuVC;
        [self.window makeKeyAndVisible];
        return YES;
    }
Mydemo.gif
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 211,290评论 6 491
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 90,107评论 2 385
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 156,872评论 0 347
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 56,415评论 1 283
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 65,453评论 6 385
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 49,784评论 1 290
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,927评论 3 406
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 37,691评论 0 266
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,137评论 1 303
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,472评论 2 326
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 38,622评论 1 340
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,289评论 4 329
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,887评论 3 312
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,741评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,977评论 1 265
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 46,316评论 2 360
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 43,490评论 2 348

推荐阅读更多精彩内容

  • 先看下效果 1:新建一个项目,名字随便起,在项目下新建一个实体文件夹,这个文件件就是存放封装好的抽屉效果类(只有两...
    qiongyong阅读 747评论 2 0
  • 思路:跟控制器(rootVc)添加子控制器(下面三个)的view在跟控制器的 view 上面。(注意三个子控制器的...
    码农耕阅读 359评论 0 0
  • *7月8日上午 N:Block :跟一个函数块差不多,会对里面所有的内容的引用计数+1,想要解决就用__block...
    炙冰阅读 2,477评论 1 14
  • 原来我们也可以打开任督二脉了!快来学习 打开任督二脉,我们都在武侠小说中见过。一般情况下打开任督二脉之后,真气就会...
    DABO_ce35阅读 237评论 0 0
  • 哲思·当代年轻人的撕扯人生:一边是鸡汤,一边是毒药 作者:甘球 《新周刊》曾经有过一期主题叫“中产阶层的撕扯人生”...
    简黛玉阅读 9,689评论 8 146