iOS侧边栏

有时候项目需求TabBar在侧边,不在底部,当需要的时候显示出来,不需要的时候隐藏

基于这种需求,自定义一个侧边栏和UITabController

效果.gif

第一步:

首先封装一个侧边栏的控件

.h文件
#import <UIKit/UIKit.h>

@protocol LeftViewDelegate <NSObject>
/**
 点击侧边栏按钮调用方法(必写)

 @param selectedIndex 按钮tag
 */
@required
- (void)didClickChildButton:(int)selectedIndex;

@end

@interface LeftView : UIView

@property(nonatomic, strong) NSArray *itemArray;
@property(nonatomic, strong) id <LeftViewDelegate>delegate;

@end

@interface TabButton : UIButton

@end
.m文件
#import "LeftView.h"

#define VIEW_WIDTH self.bounds.size.width
#define VIEW_HEIGHT self.bounds.size.height

@interface LeftView()

@property(nonatomic, strong) UIButton *selectedButton;

@end

@implementation LeftView

-(instancetype)initWithFrame:(CGRect)frame
{
    if (self = [super initWithFrame:frame]) {
        [self setUp];
    }
    return self;
}

- (void)setUp
{
    self.backgroundColor = [UIColor whiteColor];
}

- (void)setItemArray:(NSArray *)itemArray
{
    _itemArray = itemArray;
    int n = 0;
    for (NSDictionary *dict in itemArray) {
        TabButton *button = [TabButton buttonWithType:UIButtonTypeCustom];
        [button setTitle:dict[@"title"] forState:UIControlStateNormal];
        [button setTitleColor:[UIColor blackColor] forState:UIControlStateNormal];
        [button setImage:[UIImage imageNamed:dict[@"image"]] forState:UIControlStateNormal];
        [button setImage:[UIImage imageNamed:dict[@"selectImage"]] forState:UIControlStateSelected];
        button.tag = 999 + n;
        [button addTarget:self action:@selector(buttonClick:) forControlEvents:UIControlEventTouchUpInside];
        [self addSubview:button];
        // 默认第一个按钮点击,跟tabbarController默认选中的控制器index一致
        if (n == 0) {// 0
            self.selectedButton = button;
            self.selectedButton.selected = YES;
        }
        n ++;
    }
}

- (void)buttonClick:(UIButton *)button
{
    int tag = (int)button.tag - 999;
    NSLog(@"点击了%d个按钮",tag);
    if ([self.delegate respondsToSelector:@selector(didClickChildButton:)]) {
        [self.delegate didClickChildButton:tag];
        self.selectedButton.selected = NO;
        self.selectedButton = button;
        self.selectedButton.selected = YES;
    }
}

-(void)layoutSubviews
{
    CGFloat height = [UIScreen mainScreen].bounds.size.height / 4;
    
    for (UIView *child in self.subviews) {
        Class class = NSClassFromString(@"UIButton");
        if ([child isKindOfClass:class]) {
            int tag = (int)child.tag - 999;
            child.frame = CGRectMake(0, height * tag, VIEW_WIDTH, height);
        }
    }
}

@end

#pragma mark - 自定义tabBar按钮
@implementation TabButton

- (void)layoutSubviews{
    [super layoutSubviews];
    
    self.imageView.frame = CGRectMake(0, VIEW_HEIGHT * 0.1, VIEW_WIDTH, VIEW_HEIGHT * 0.5);
    self.imageView.contentMode = UIViewContentModeScaleAspectFit;
    self.titleLabel.frame = CGRectMake(0, VIEW_HEIGHT * 0.6, VIEW_WIDTH, VIEW_HEIGHT * 0.2);
    self.titleLabel.textAlignment = NSTextAlignmentCenter;
    
}

@end

第二步:自定义UITabController

.m文件
#import "MainTabBarController.h"
#import "OneViewController.h"
#import "TwoViewController.h"
#import "ThreeViewController.h"
#import "FourViewController.h"
#import "LeftView.h"

// 侧边栏的宽度
#define LEFT_WIDTH 100

@interface MainTabBarController ()<LeftViewDelegate>

@property(nonatomic, strong) LeftView *lefeView;
@property(nonatomic, strong) UIView *bgView;
@property (assign, nonatomic,getter=isHidden)  BOOL hidden;
// tabBar 的标题+图片字典数组
@property(nonatomic, strong) NSMutableArray *tabItems;

@end

@implementation MainTabBarController

- (void)viewDidLoad {
    [super viewDidLoad];
    // Do any additional setup after loading the view.
    
    // init child vc
    NSMutableArray *array = [NSMutableArray array];
    OneViewController *onevc = [[OneViewController alloc] init];
    TwoViewController *twovc = [[TwoViewController alloc] init];
    ThreeViewController *threevc = [[ThreeViewController alloc] init];
    FourViewController *fourvc = [[FourViewController alloc] init];
    
    [self setUpChildViewController:onevc array:array title:@"话题" imageName:@"tabbar_topic" selectImageName:@"tabbar_topic_selected"];
    [self setUpChildViewController:twovc array:array title:@"材料" imageName:@"tabbar_material" selectImageName:@"tabbar_material_selected"];
    [self setUpChildViewController:threevc array:array title:@"表单" imageName:@"tabbar_form" selectImageName:@"tabbar_form_selected"];
    [self setUpChildViewController:fourvc array:array title:@"更多" imageName:@"tabbar_more" selectImageName:@"tabbar_more_selected"];
    
    self.viewControllers = array;
    self.selectedIndex = 0;
    self.hidden = YES;
    
    // ori tabbar set nil ......
    [self setValue:nil forKeyPath:@"tabBar"];
    
}

- (void)didReceiveMemoryWarning {
    [super didReceiveMemoryWarning];
    // Dispose of any resources that can be recreated.
}

- (void)viewWillAppear:(BOOL)animated
{
    [super viewWillAppear:animated];
}

- (void)setUpChildViewController:(UIViewController *)viewController array:(NSMutableArray *)array title:(NSString *)title imageName:(NSString *)imageName selectImageName:(NSString *)selectImageName
{
    UINavigationController *navVC = [[UINavigationController alloc] initWithRootViewController:viewController];
    viewController.view.backgroundColor = [UIColor colorWithRed:arc4random_uniform(255)/255.0 green:arc4random_uniform(255)/255.0 blue:arc4random_uniform(255)/255.0 alpha:1.0];
    viewController.navigationItem.leftBarButtonItem = [[UIBarButtonItem alloc]initWithImage:[UIImage imageNamed:@"item.png"] style:UIBarButtonItemStylePlain target:self action:@selector(tabHiddenOrShow)];
    [array addObject:navVC];
    
    NSDictionary *dict = @{@"title":title,
                           @"image":imageName,
                           @"selectImage":selectImageName
                           };
    [self.tabItems addObject:dict];
}

- (void)tabHiddenOrShow
{
    [self.tabBarController.tabBar setHidden:YES];
    self.hidden = !self.isHidden;
    
    if (self.lefeView == nil) {
        self.lefeView = [[LeftView alloc] initWithFrame:CGRectMake(-LEFT_WIDTH, 0, LEFT_WIDTH, [UIScreen mainScreen].bounds.size.height)];
        self.lefeView.delegate = self;
        self.lefeView.itemArray = self.tabItems;
        [[UIApplication sharedApplication].keyWindow addSubview:self.lefeView];
    }
    if (self.bgView == nil) {
        self.bgView = [[UIView alloc] initWithFrame:CGRectMake(0, 0, [UIScreen mainScreen].bounds.size.width, [UIScreen mainScreen].bounds.size.height)];
        self.bgView.backgroundColor = [UIColor colorWithWhite:0.3 alpha:0.5];
        UITapGestureRecognizer *tap = [[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(tapClick:)];
        [self.bgView addGestureRecognizer:tap];
    }
    
    CGRect leftFrame = self.lefeView.frame;
    if (self.isHidden == YES) {
        leftFrame.origin.x = -LEFT_WIDTH;
        [self.bgView removeFromSuperview];
    } else {
        [[UIApplication sharedApplication].keyWindow insertSubview:self.bgView belowSubview:self.lefeView];
        leftFrame.origin.x = 0;
    }
    [UIView animateWithDuration:0.5 animations:^{
        self.lefeView.frame = leftFrame;
        [self.view setNeedsLayout];
    }];
}

- (void)tapClick:(UITapGestureRecognizer *)tap
{
    [self tabHiddenOrShow];
}


#pragma mark - LeftViewDelegate
-(void)didClickChildButton:(int)selectedIndex
{
    self.selectedIndex = selectedIndex;
    [self tabHiddenOrShow];
}


#pragma mark - set & get
-(NSMutableArray *)tabItems
{
    if (_tabItems == nil) {
        _tabItems = [NSMutableArray array];
    }
    return _tabItems;
}

@end

在你需要添加UITabController的地方使用

我这里在APPDELAGE里使用到的

self.window = [[UIWindow alloc]initWithFrame:[UIScreen mainScreen].bounds];
    
    MainTabBarController *mainVC = [[MainTabBarController alloc]init];
    self.window.rootViewController = mainVC;
    
    [self.window makeKeyAndVisible];

详细代码请看:
https://github.com/Vanessa1990/SideBar

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 213,616评论 6 492
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 91,020评论 3 387
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 159,078评论 0 349
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 57,040评论 1 285
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,154评论 6 385
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,265评论 1 292
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,298评论 3 412
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,072评论 0 268
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,491评论 1 306
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,795评论 2 328
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 38,970评论 1 341
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,654评论 4 337
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,272评论 3 318
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,985评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,223评论 1 267
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 46,815评论 2 365
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 43,852评论 2 351

推荐阅读更多精彩内容

  • 更新: 1.修正了一些笔误和添加了shouldLeftStill,shouldRightStill两个属性,这两个...
    R4L阅读 1,965评论 5 32
  • 发现 关注 消息 iOS 第三方库、插件、知名博客总结 作者大灰狼的小绵羊哥哥关注 2017.06.26 09:4...
    肇东周阅读 12,071评论 4 62
  • 今天是大年初三,不知道是不是因为这天气太忧郁了,我提不起精神。之前好友B也曾打趣我“不想跟你说话,你实在是一个容易...
    弗莱明阅读 2,436评论 2 28
  • 曾经我感觉z(同班女生)和x(同班男生)之间是不是有点什么,因为他们上学放学都结伴同行。我不是没想过纯洁友谊的,只...
    LoisXiong阅读 134评论 0 0
  • 不知道有没有人和我一样,平静的生活总会被身边一些无关紧要的统称亲戚的人的只言片语所打破。 我从小学习不是很好,但是...
    栗寻阅读 536评论 0 3