ios仿側邊抽屜效果實現代碼_IOS

來源:互聯網
上載者:User

效果圖如下


代碼實現以及思路下面分析:
代碼建立導航控制器
Appdelegate.m中

#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中

//// 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正在彈出或者收回執行動畫過程中禁用.

@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從左側彈出.

#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 即可.

#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取消禁用 側欄 按鈕.

//不用反覆建立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

以上就是本文的全部內容,希望對大家的學習有所協助。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.