服务器之家:专注于服务器技术及软件下载分享
分类导航

PHP教程|ASP.NET教程|Java教程|ASP教程|编程技术|正则表达式|C/C++|IOS|C#|Swift|Android|VB|R语言|JavaScript|易语言|vb.net|

服务器之家 - 编程语言 - IOS - ios仿侧边抽屉效果实现代码

ios仿侧边抽屉效果实现代码

2021-01-17 20:30菜鸟Alex IOS

这篇文章主要为大家详细介绍了ios仿侧边抽屉效果实现代码,文中示例代码介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们可以参考一下

效果图如下

ios仿侧边抽屉效果实现代码

代码实现以及思路下面分析:
代码创建导航控制器
appdelegate.m中

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#import "appdelegate.h"
#import "viewcontroller.h"
@interface appdelegate ()
 
@end
 
@implementation appdelegate
 
 
- (bool)application:(uiapplication *)application didfinishlaunchingwithoptions:(nsdictionary *)launchoptions {
 
  self.window = [[uiwindow alloc] initwithframe:[uiscreen mainscreen].bounds];
  viewcontroller * vc = [[viewcontroller alloc] init];
//必须要初始化导航控制器的根控制器
  uinavigationcontroller * nav = [[uinavigationcontroller alloc] initwithrootviewcontroller:vc];
  self.window.rootviewcontroller = nav;
  [self.window makekeyandvisible];
  return yes;
}

viewcontroller.m中

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
//
// viewcontroller.m
// pbsliedmenu
//
// created by 裴波波 on 16/4/21.
// copyright © 2016年 裴波波. all rights reserved.
//
 
#import "viewcontroller.h"
#define kscreenh [uiscreen mainscreen].bounds.size.height
#define kscreenw [uiscreen mainscreen].bounds.size.width
#define knavw 64
@interface viewcontroller ()<uitableviewdelegate,uitableviewdatasource>
 
@property (nonatomic, strong) uitableview *tableview;
/** 记录是否打开侧边栏 */
@property (nonatomic, assign) bool openslide;
/** 侧栏按钮 */
@property (nonatomic, strong) uibarbuttonitem *btnleft;
 
@end

用一个bool值来记录左侧view是打开还是关闭状态.每次点击都要改变记录tableview状态的值
用属性保存 侧栏 按钮,用来当左侧tableview正在弹出或者收回执行动画过程中禁用.

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
@implementation viewcontroller
 
#pragma mark - 选中某个cell代理方法
-(void)tableview:(uitableview *)tableview didselectrowatindexpath:(nsindexpath *)indexpath{
 
  uitableviewcell * cell = [tableview cellforrowatindexpath:indexpath];
  nslog(@"%@",cell.textlabel.text);
  //选中cell后立即取消选中
  [tableview deselectrowatindexpath:indexpath animated:yes];
}
 
 
#pragma mark - tableview数据源
-(nsinteger)tableview:(uitableview *)tableview numberofrowsinsection:(nsinteger)section{
  
  return 20;
}
 
-(uitableviewcell *)tableview:(uitableview *)tableview cellforrowatindexpath:(nsindexpath *)indexpath{
  static nsstring * id = @"cell";
  uitableviewcell * cell = [tableview dequeuereusablecellwithidentifier:id forindexpath:indexpath];
  cell.textlabel.text = [nsstring stringwithformat:@"我是%zd",indexpath.row];
  cell.backgroundcolor = [uicolor orangecolor];
  return cell;
}
 
- (void)viewdidload {
  
  [super viewdidload];
  self.view.backgroundcolor = [uicolor whitecolor];
  [self initleftbarbutton];
  //注册cell
  [self.tableview registerclass:[uitableviewcell class] forcellreuseidentifier:@"cell"];
}

注意:注册cell的同时调用了 self.tableview 则调用了懒加载,此时tableview已经创建了.必须要先创建,否则有一个小bug就是,当tableview第一次弹出的时候会从屏幕的(0,0)点弹出,而不是整个tableview从左侧弹出.

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
#pragma mark - 初始化侧栏按钮
-(void)initleftbarbutton{
  
  uibutton * btnleft = [[uibutton alloc] init];
  btnleft.frame = cgrectmake(0, 0, 90, 40);
  [btnleft settitle:@"侧栏" forstate:uicontrolstatenormal];
  [btnleft settitlecolor:[uicolor blackcolor] forstate:uicontrolstatenormal];
  [btnleft addtarget:self action:@selector(didleftbtn) forcontrolevents:uicontroleventtouchupinside];
  self.navigationitem.leftbarbuttonitem = [[uibarbuttonitem alloc] initwithcustomview:btnleft];
  self.btnleft = self.navigationitem.leftbarbuttonitem;
}
 
#pragma mark - 懒加载tableview
-(uitableview *)tableview{
  
  if (_tableview == nil) {
    _tableview = [[uitableview alloc] init];
    _tableview.delegate = self;
    _tableview.datasource = self;
    _tableview.backgroundcolor = [uicolor orangecolor];
    //第一次点击tableview从左上角弹出,优化方案--先创建出tableview
    cgfloat hight = kscreenh;
    cgfloat x = 0;
    cgfloat y = knavw;
    cgfloat width = 0;
    _tableview.frame = cgrectmake(x, y, width, hight);
    //取消显示竖直滚动条
    _tableview.showsverticalscrollindicator = no;
  }
  return _tableview;
}

懒加载的时候直接创建tableview,让其宽度 == 0 即可.

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
#pragma mark - 点击侧栏按钮弹出tableview
-(void)didleftbtn{
  
  //禁用button等待动画执行完毕再启用button
  self.btnleft.enabled = no;
  cgfloat hight = kscreenh;
  cgfloat x = 0;
  cgfloat y = knavw;
  if (!self.openslide) {
    //添加动画
    [uiview animatewithduration:0.3 animations:^{
      cgfloat width = kscreenw / 3;
      self.tableview.frame = cgrectmake(x, y, width, hight);
    }];
    [self.view addsubview:self.tableview];
  } else {
    [uiview animatewithduration:0.3 animations:^{
      cgfloat width = 0;
      self.tableview.frame = cgrectmake(x, y, width, hight);
    }];
  }
  //执行完毕动画 取消禁用button
  [self performselector:@selector(setbtnleftenabled) withobject:nil afterdelay:0.3];
  //监视侧栏是否打开
  if (self.openslide == yes) {
    self.openslide = no;
  } else {
    self.openslide = yes;
  }
}

点击 侧栏 按钮弹出tableview,此过程中让其动画执行,不会显得生硬.让tableview的宽度从0---> 屏幕宽度的三分之一
记录tableview打开的状态.
执行动画的过程中禁用 侧栏 按钮,由于代码执行时间的瞬间完成的,动画执行时间是0.3s,则延迟0.3s取消禁用 侧栏 按钮.

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
//不用反复创建tableview
//#pragma mark - 移除tableview
//-(void)removesliedview{
//
//  [self.tableview removefromsuperview];
//  self.btnleft.enabled = yes;
//}
#pragma mark - 动画执行完毕启用"侧栏"按钮
-(void)setbtnleftenabled{
  
  self.btnleft.enabled = yes;
  //动画执行完毕让第一个cell显示在最顶端
  self.tableview.contentoffset = cgpointmake(0, 0);
}
 
 
- (void)didreceivememorywarning {
  [super didreceivememorywarning];
  // dispose of any resources that can be recreated.
}
 
@end

之前犯过一个错误就是点击 侧栏 按钮创建tableview,再点击 销毁 tableview,这样比较耗性能.通过懒加载先创建tableview,收回tableview的时候让其宽度 == 0 即可.
上图演示的可以看出,当滑动tableview的时候,再次点击进去tableview还是滑动的位置,不会恢复到开始 下标为 0 的cell为最上面显示的cell.优化方案:让tableview的偏移contentoffset等于 0即可.代码不能写在 弹出tableview 与 收回 tableview的动画代码中,因为这样会让人看出来.写在动画执行完毕后的代码中.

源代码地址:https://git.oschina.net/alexpei/pbsliedmenu.git

以上就是本文的全部内容,希望对大家的学习有所帮助。

延伸 · 阅读

精彩推荐
  • IOSiOS布局渲染之UIView方法的调用时机详解

    iOS布局渲染之UIView方法的调用时机详解

    在你刚开始开发 iOS 应用时,最难避免或者是调试的就是和布局相关的问题,下面这篇文章主要给大家介绍了关于iOS布局渲染之UIView方法调用时机的相关资料...

    windtersharp7642021-05-04
  • IOS关于iOS自适应cell行高的那些事儿

    关于iOS自适应cell行高的那些事儿

    这篇文章主要给大家介绍了关于iOS自适应cell行高的那些事儿,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的...

    daisy6092021-05-17
  • IOSiOS中tableview 两级cell的展开与收回的示例代码

    iOS中tableview 两级cell的展开与收回的示例代码

    本篇文章主要介绍了iOS中tableview 两级cell的展开与收回的示例代码,小编觉得挺不错的,现在分享给大家,也给大家做个参考。一起跟随小编过来看看吧...

    J_Kang3862021-04-22
  • IOSIOS开发之字典转字符串的实例详解

    IOS开发之字典转字符串的实例详解

    这篇文章主要介绍了IOS开发之字典转字符串的实例详解的相关资料,希望通过本文能帮助到大家,让大家掌握这样的方法,需要的朋友可以参考下...

    苦练内功5832021-04-01
  • IOSIOS 屏幕适配方案实现缩放window的示例代码

    IOS 屏幕适配方案实现缩放window的示例代码

    这篇文章主要介绍了IOS 屏幕适配方案实现缩放window的示例代码,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要...

    xiari5772021-06-01
  • IOSiOS 雷达效果实例详解

    iOS 雷达效果实例详解

    这篇文章主要介绍了iOS 雷达效果实例详解的相关资料,需要的朋友可以参考下...

    SimpleWorld11022021-01-28
  • IOSiOS通过逆向理解Block的内存模型

    iOS通过逆向理解Block的内存模型

    自从对 iOS 的逆向初窥门径后,我也经常通过它来分析一些比较大的应用,参考一下这些应用中某些功能的实现。这个探索的过程乐趣多多,不仅能满足自...

    Swiftyper12832021-03-03
  • IOS解析iOS开发中的FirstResponder第一响应对象

    解析iOS开发中的FirstResponder第一响应对象

    这篇文章主要介绍了解析iOS开发中的FirstResponder第一响应对象,包括View的FirstResponder的释放问题,需要的朋友可以参考下...

    一片枫叶4662020-12-25