分頁導航條目

自己封裝的一個導航條目切換控制器方法
在.h中聲明

-(instancetype)initWithSubViewControllers:(NSArray *)subViewControllers;

@property(nonatomic,copy)UIColor *btnTextNomalColor;
@property(nonatomic,copy)UIColor *btnTextSeletedColor;
@property(nonatomic,copy)UIColor *sliderColor;
@property(nonatomic,copy)UIColor *topBarColor;

在.m中實現(xiàn)

#import "HanboNavBarController.h"

#define ScreenW    [UIScreen mainScreen].bounds.size.width
#define ScreenH    [UIScreen mainScreen].bounds.size.height

@interface HanboNavBarController ()<UIScrollViewDelegate>
@property (nonatomic, weak) UIButton *oldBtn;
@property(nonatomic,strong)NSArray *VCArr;
@property (nonatomic, weak) UIScrollView *contentView;
@property (nonatomic, weak) UIScrollView *topBar;
@property(nonatomic,assign) CGFloat btnW ;

@property (nonatomic, weak) UIView *slider;

@end

@implementation HanboNavBarController
-(UIColor *)sliderColor
{
    if(_sliderColor == nil)
    {
        _sliderColor = [UIColor purpleColor];
    }
    return  _sliderColor;
}
-(UIColor *)btnTextNomalColor
{
    if(_btnTextNomalColor == nil)
    {
        _btnTextNomalColor = [UIColor grayColor];
    }
    return _btnTextNomalColor;
}
-(UIColor *)btnTextSeletedColor
{
    if(_btnTextSeletedColor == nil)
    {
        _btnTextSeletedColor = [UIColor blackColor];
    }
    return _btnTextSeletedColor;
}
-(UIColor *)topBarColor
{
    if(_topBarColor == nil)
    {
        _topBarColor = [UIColor whiteColor];
//       _topBarColor =  [UIColor colorWithRed:55 / 255.0 green:63 / 255.09 blue:80 / 255.0 alpha:1];
    }
    return _topBarColor;
}
-(instancetype)initWithSubViewControllers:(NSArray *)subViewControllers
{
    if(self = [super init])
    {
        _VCArr = subViewControllers;
    }
    return self;
}
- (void)viewDidLoad {
    [super viewDidLoad];
    
    //添加上面的導航條
    [self addTopBar];
    
    //添加子控制器
    [self addVCView];
    
    //添加滑塊
    [self addSliderView];
    

}
-(void)addSliderView
{
    if(self.VCArr.count == 0) return;

    UIView *slider = [[UIView alloc]initWithFrame:CGRectMake(0,41-64,self.btnW, 3)];
    slider.backgroundColor = self.sliderColor;
    [self.topBar addSubview:slider];
    self.slider = slider;
}
-(void)addTopBar
{
    if(self.VCArr.count == 0) return;
    NSUInteger count = self.VCArr.count;
    
    UIScrollView *scrollView = [[UIScrollView alloc]initWithFrame:CGRectMake(0, 0, ScreenW, 44)];
    scrollView.backgroundColor = self.topBarColor;
    self.topBar = scrollView;
    self.topBar.bounces = NO;
    [self.view addSubview:self.topBar];
    
    if(count <= 5)
    {
         self.btnW = ScreenW / count;
    }else
    {
         self.btnW = ScreenW / 5.0;
    }
    //添加button
    for (int i=0; i<count; i++)
    {
        UIViewController *vc = self.VCArr[i];
        
        UIButton *btn = [[UIButton alloc]initWithFrame:CGRectMake(i*self.btnW, -64, self.btnW, 44)];
        btn.tag = 10000+i;
        [btn setTitleColor:self.btnTextNomalColor forState:UIControlStateNormal];
        [btn setTitleColor:self.btnTextSeletedColor forState:UIControlStateSelected];
        [btn setTitle:vc.title forState:UIControlStateNormal];
        [btn addTarget:self action:@selector(click:) forControlEvents:UIControlEventTouchUpInside];
        //文字大小
        btn.titleLabel.font    = [UIFont systemFontOfSize: 12];
        [self.topBar addSubview:btn];
        if(i == 0)
        {
            btn.selected = YES;
            //默認one文字放大
            btn.transform = CGAffineTransformMakeScale(1.2, 1.2);
            self.oldBtn = btn;

        }
    }
    self.topBar.contentSize = CGSizeMake(self.btnW *count, -64);
}
-(void)addVCView
{
    UIScrollView *contentView = [[UIScrollView alloc]initWithFrame:CGRectMake(0, 0+44, ScreenW, ScreenH -44)];
    self.contentView = contentView;
    self.contentView.bounces = NO;
    contentView.delegate = self;
    contentView.backgroundColor = [UIColor lightGrayColor];
    [self.view addSubview:contentView];
    
    NSUInteger count = self.VCArr.count;
    for (int i=0; i<count; i++) {
        UIViewController *vc = self.VCArr[i];
        [self addChildViewController:vc];
        vc.view.frame = CGRectMake(i*ScreenW, 0, ScreenW, ScreenH -44);
        [contentView addSubview:vc.view];
    }
    contentView.contentSize = CGSizeMake(count*ScreenW, ScreenH-44);
    contentView.pagingEnabled = YES;
}
-(void)click:(UIButton *)sender
{
    if(sender.selected) return;
    self.oldBtn.selected = NO;
    sender.selected = YES;
    self.contentView.contentOffset = CGPointMake((sender.tag - 10000)*ScreenW, 0);
    [UIView animateWithDuration:0.3 animations:^{
        sender.transform = CGAffineTransformMakeScale(1.2, 1.2);
    }];
    self.oldBtn.transform = CGAffineTransformIdentity;
    self.oldBtn = sender;
    
    //判斷導航條是否需要移動
    CGFloat maxX = CGRectGetMaxX(self.slider.frame);
    if(maxX >=ScreenW  && sender.tag != self.VCArr.count + 10000 - 1)
    {
        [UIView animateWithDuration:0.3 animations:^{
            self.topBar.contentOffset = CGPointMake(maxX - ScreenW + self.btnW, -64);
        }];
    }else if(maxX < DCScreenW)
    {
        [UIView animateWithDuration:0.3 animations:^{
            self.topBar.contentOffset = CGPointMake(0, -64);
        }];
    }
}
-(void)scrollViewDidScroll:(UIScrollView *)scrollView
{
    //滑動導航條
    self.slider.frame = CGRectMake(scrollView.contentOffset.x / ScreenW *self.btnW , 41-64, self.btnW, 3);
}
//判斷是否切換導航條按鈕的狀態(tài)
-(void)scrollViewDidEndDecelerating:(UIScrollView *)scrollView
{
    CGFloat offX =  scrollView.contentOffset.x;
    int tag = (int)(offX /ScreenW + 0.5) + 10000;
    UIButton *btn = [self.view viewWithTag:tag];
    if(tag != self.oldBtn.tag)
    {
        [self click:btn];
    }
}

使用方法

     MycardunuseVC *unuse =[[MycardunuseVC alloc]init];
    unuse.title=@"未使用";
     MycarduseVC *use=[[MycarduseVC alloc]init];
    use.title=@"已使用";
    MycardendVC *end=[[MycardendVC alloc]init];
    end.title=@"已完成";
    
    NSArray *subViewControllers = @[unuse,use,end];
    HanboNavBarController *tabBarVC = [[HanboNavBarController alloc]initWithSubViewControllers:subViewControllers];
    tabBarVC.view.frame = CGRectMake(0, 64, SCREEN_WIDTH, SCREEN_HEIGHT - 64);
    
    [self.view addSubview:tabBarVC.view];
    [self addChildViewController:tabBarVC];

效果圖:

導航條目切換.gif
最后編輯于
?著作權歸作者所有,轉載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個濱河市俭令,隨后出現(xiàn)的幾起案子剧罩,更是在濱河造成了極大的恐慌笆豁,老刑警劉巖言缤,帶你破解...
    沈念sama閱讀 206,378評論 6 481
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件,死亡現(xiàn)場離奇詭異挤聘,居然都是意外死亡,警方通過查閱死者的電腦和手機着倾,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,356評論 2 382
  • 文/潘曉璐 我一進店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來燕少,“玉大人卡者,你說我怎么就攤上這事】兔牵” “怎么了崇决?”我有些...
    開封第一講書人閱讀 152,702評論 0 342
  • 文/不壞的土叔 我叫張陵,是天一觀的道長底挫。 經(jīng)常有香客問我恒傻,道長,這世上最難降的妖魔是什么凄敢? 我笑而不...
    開封第一講書人閱讀 55,259評論 1 279
  • 正文 為了忘掉前任碌冶,我火速辦了婚禮,結果婚禮上涝缝,老公的妹妹穿的比我還像新娘扑庞。我一直安慰自己,他們只是感情好拒逮,可當我...
    茶點故事閱讀 64,263評論 5 371
  • 文/花漫 我一把揭開白布罐氨。 她就那樣靜靜地躺著,像睡著了一般滩援。 火紅的嫁衣襯著肌膚如雪栅隐。 梳的紋絲不亂的頭發(fā)上,一...
    開封第一講書人閱讀 49,036評論 1 285
  • 那天玩徊,我揣著相機與錄音租悄,去河邊找鬼。 笑死恩袱,一個胖子當著我的面吹牛泣棋,可吹牛的內(nèi)容都是我干的。 我是一名探鬼主播畔塔,決...
    沈念sama閱讀 38,349評論 3 400
  • 文/蒼蘭香墨 我猛地睜開眼潭辈,長吁一口氣:“原來是場噩夢啊……” “哼!你這毒婦竟也來了澈吨?” 一聲冷哼從身側響起把敢,我...
    開封第一講書人閱讀 36,979評論 0 259
  • 序言:老撾萬榮一對情侶失蹤,失蹤者是張志新(化名)和其女友劉穎谅辣,沒想到半個月后修赞,有當?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體,經(jīng)...
    沈念sama閱讀 43,469評論 1 300
  • 正文 獨居荒郊野嶺守林人離奇死亡桑阶,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點故事閱讀 35,938評論 2 323
  • 正文 我和宋清朗相戀三年榔组,在試婚紗的時候發(fā)現(xiàn)自己被綠了熙尉。 大學時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片。...
    茶點故事閱讀 38,059評論 1 333
  • 序言:一個原本活蹦亂跳的男人離奇死亡搓扯,死狀恐怖,靈堂內(nèi)的尸體忽然破棺而出包归,到底是詐尸還是另有隱情锨推,我是刑警寧澤,帶...
    沈念sama閱讀 33,703評論 4 323
  • 正文 年R本政府宣布公壤,位于F島的核電站换可,受9級特大地震影響,放射性物質發(fā)生泄漏厦幅。R本人自食惡果不足惜沾鳄,卻給世界環(huán)境...
    茶點故事閱讀 39,257評論 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一處隱蔽的房頂上張望确憨。 院中可真熱鬧译荞,春花似錦、人聲如沸休弃。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,262評論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽塔猾。三九已至篙骡,卻和暖如春,著一層夾襖步出監(jiān)牢的瞬間丈甸,已是汗流浹背糯俗。 一陣腳步聲響...
    開封第一講書人閱讀 31,485評論 1 262
  • 我被黑心中介騙來泰國打工, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留睦擂,地道東北人得湘。 一個月前我還...
    沈念sama閱讀 45,501評論 2 354
  • 正文 我出身青樓,卻偏偏與公主長得像祈匙,于是被迫代替她去往敵國和親忽刽。 傳聞我的和親對象是個殘疾皇子,可洞房花燭夜當晚...
    茶點故事閱讀 42,792評論 2 345

推薦閱讀更多精彩內(nèi)容

  • Android 自定義View的各種姿勢1 Activity的顯示之ViewRootImpl詳解 Activity...
    passiontim閱讀 171,510評論 25 707
  • 發(fā)現(xiàn) 關注 消息 iOS 第三方庫夺欲、插件跪帝、知名博客總結 作者大灰狼的小綿羊哥哥關注 2017.06.26 09:4...
    肇東周閱讀 12,024評論 4 62
  • B成為A的導師,A進入優(yōu)秀的班級學習 學校組織學生與導師一起些阅,組小組或者是怎么樣到教學系統(tǒng)嘆息鎮(zhèn)獵殺怪物 嘆息鎮(zhèn)實...
    利紙閱讀 183評論 0 0
  • 聽說伞剑,明天就要下雪了,今天還是十幾度的灰蒙蒙的天氣市埋,明天就該零下了黎泣。的確恕刘,這個秋天過得很快,抓不住一點蹤跡抒倚,就消失...
    梅子梅子閱讀 2,401評論 0 10
  • 蜂蜜來源于何處托呕? 釀制蜂蜜的原料主要來源于蜜粉源植物的花蜜或分泌物含蓉,蜜蜂在巢內(nèi)缺蜜而外...
    4394991d264d閱讀 1,088評論 0 1