自定義導(dǎo)航欄視圖

前言

有時候系統(tǒng)自動的導(dǎo)航欄往往不能滿足項目要求,如上圖,導(dǎo)航欄上需要左右兩個按鈕,并且中間的按鈕是可以滑動的,這就需要我們自己封裝了.

上效果圖

topView111.gif

上代碼
YYTopBarView是封裝的導(dǎo)航欄,在控制器調(diào)接口即可

//
//  YYTopBarView.h
//  YYTopBarView
//
//  Created by yyMae on 16/3/17.
//  Copyright ? 2016年 yyMae. All rights reserved.
//

#import <UIKit/UIKit.h>

@interface YYTopBarView : UIView
@property (nonatomic, strong) UIButton *leftBtn;//左邊的按鈕
@property (nonatomic, strong) UIButton *rightBtn;//右邊的按鈕

- (instancetype)initWithFrame:(CGRect)frame withButtons:(NSArray *)btn_array;
@end


//
//  YYTopBarView.m
//  YYTopBarView
//
//  Created by yyMae on 16/3/17.
//  Copyright ? 2016年 yyMae. All rights reserved.
//

#import "YYTopBarView.h"
#define kWIDTH self.bounds.size.width
#define kHEIGHT self.bounds.size.height
#define kBtnWidth 40
@interface YYTopBarView ()<UIScrollViewDelegate>
@property (nonatomic, strong) UIScrollView *scrollView;
@property (nonatomic, strong) NSArray *btn_array;
@end
@implementation YYTopBarView

- (instancetype)initWithFrame:(CGRect)frame withButtons:(NSArray *)btn_array{
    self = [super initWithFrame:frame];
    if (self) {
        self.btn_array = btn_array;
        self.backgroundColor = [UIColor colorWithRed:228/255.0 green:11/255.0 blue:23/255.0 alpha:1];
        [self initButton];
        [self addSubview:self.scrollView];
        [self addButtonToScrollView];
    }
    return self;
}

- (void)initButton{
    self.leftBtn = [UIButton buttonWithType:UIButtonTypeSystem];
    self.leftBtn.frame = CGRectMake(10, (kHEIGHT - 40) * 0.5, 40, 40);
    [self.leftBtn setBackgroundImage:[UIImage imageNamed:@"2222"] forState:UIControlStateNormal];
    [self addSubview:self.leftBtn];
    
    self.rightBtn = [UIButton buttonWithType:UIButtonTypeSystem];
    self.rightBtn.frame = CGRectMake(kWIDTH - 50, (kHEIGHT - 40) * 0.5, 40, 40);
    [self.rightBtn setBackgroundImage:[UIImage imageNamed:@"1111"] forState:UIControlStateNormal];
    [self addSubview:self.rightBtn];

}

-(UIScrollView *)scrollView{
    if (!_scrollView) {
        _scrollView = [[UIScrollView alloc]initWithFrame:CGRectMake(CGRectGetMaxX(self.leftBtn.frame), 0, kWIDTH - self.leftBtn.frame.size.width - self.rightBtn.frame.size.width - 20, kHEIGHT)];
        _scrollView.delegate = self;
        _scrollView.showsHorizontalScrollIndicator = YES;//隱藏滾動條
        _scrollView.pagingEnabled = YES;//設(shè)置分頁
        _scrollView.contentSize = CGSizeMake(kBtnWidth * self.btn_array.count, 0);//設(shè)置可滑尺寸
        _scrollView.contentOffset = CGPointMake(0, 0);//設(shè)置初始偏移量
    }
    return _scrollView;
}

-(NSArray *)btn_array{
    if (!_btn_array) {
        _btn_array = [NSArray array];
    }
    return _btn_array;
}

- (void)addButtonToScrollView{
    for (int i = 0; i < self.btn_array.count; i++) {
        UIButton *btn = [UIButton buttonWithType:UIButtonTypeSystem];
        btn.frame = CGRectMake(kBtnWidth * i, (kHEIGHT - kBtnWidth) * 0.5, kBtnWidth, kBtnWidth);
        [btn setTitle:self.btn_array[i] forState:UIControlStateNormal];
        [btn setTitleColor:[UIColor whiteColor] forState:UIControlStateNormal];
        btn.tag = 1000 + i;
        [btn addTarget:self action:@selector(didClickBtn:) forControlEvents:UIControlEventTouchUpInside];
        [self.scrollView addSubview:btn];
    }
}

//可滑動的button的點擊事件,可以自主根據(jù)button.tag加條件語句
- (void)didClickBtn:(UIButton *)button{
    NSLog(@"點擊了第%ld個可滑動的按鈕",button.tag - 1000);

}
@end


//
//  ViewController.m
//  YYTopBarView
//
//  Created by yyMae on 16/3/17.
//  Copyright ? 2016年 yyMae. All rights reserved.
//

#import "ViewController.h"
#import "YYTopBarView.h"
#define kWIDTH self.view.bounds.size.width
#define kHEIGHT self.view.bounds.size.height

@interface ViewController ()

@end

@implementation ViewController

- (void)viewDidLoad {
    [super viewDidLoad];
    NSArray *array = @[@"頭條", @"訂閱", @"廣州", @"服裝", @"雪松", @"公司", @"通宵", @"周五", @"晚上"];
    self.view.backgroundColor = [UIColor whiteColor];
    YYTopBarView *TBV = [[YYTopBarView alloc]initWithFrame:CGRectMake(0, 20, kWIDTH, 64) withButtons:array];
    [self.view addSubview:TBV];
    
    //給左右的button添加點擊事件
    [TBV.leftBtn addTarget:self action:@selector(leftAction) forControlEvents:UIControlEventTouchUpInside];
    [TBV.rightBtn addTarget:self action:@selector(rightAction) forControlEvents:UIControlEventTouchUpInside];

}

- (void)leftAction{
    NSLog(@"點擊了左按鈕");
}

- (void)rightAction{
    NSLog(@"點擊了右按鈕");
}

@end
最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末侨核,一起剝皮案震驚了整個濱河市田轧,隨后出現(xiàn)的幾起案子寂玲,更是在濱河造成了極大的恐慌鼻种,老刑警劉巖督怜,帶你破解...
    沈念sama閱讀 206,311評論 6 481
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件漩符,死亡現(xiàn)場離奇詭異思恐,居然都是意外死亡,警方通過查閱死者的電腦和手機(jī)敛惊,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,339評論 2 382
  • 文/潘曉璐 我一進(jìn)店門渊鞋,熙熙樓的掌柜王于貴愁眉苦臉地迎上來,“玉大人瞧挤,你說我怎么就攤上這事锡宋。” “怎么了皿伺?”我有些...
    開封第一講書人閱讀 152,671評論 0 342
  • 文/不壞的土叔 我叫張陵员辩,是天一觀的道長盒粮。 經(jīng)常有香客問我鸵鸥,道長,這世上最難降的妖魔是什么丹皱? 我笑而不...
    開封第一講書人閱讀 55,252評論 1 279
  • 正文 為了忘掉前任妒穴,我火速辦了婚禮,結(jié)果婚禮上摊崭,老公的妹妹穿的比我還像新娘讼油。我一直安慰自己,他們只是感情好呢簸,可當(dāng)我...
    茶點故事閱讀 64,253評論 5 371
  • 文/花漫 我一把揭開白布矮台。 她就那樣靜靜地躺著乏屯,像睡著了一般。 火紅的嫁衣襯著肌膚如雪瘦赫。 梳的紋絲不亂的頭發(fā)上辰晕,一...
    開封第一講書人閱讀 49,031評論 1 285
  • 那天,我揣著相機(jī)與錄音确虱,去河邊找鬼含友。 笑死,一個胖子當(dāng)著我的面吹牛校辩,可吹牛的內(nèi)容都是我干的窘问。 我是一名探鬼主播,決...
    沈念sama閱讀 38,340評論 3 399
  • 文/蒼蘭香墨 我猛地睜開眼宜咒,長吁一口氣:“原來是場噩夢啊……” “哼惠赫!你這毒婦竟也來了?” 一聲冷哼從身側(cè)響起故黑,我...
    開封第一講書人閱讀 36,973評論 0 259
  • 序言:老撾萬榮一對情侶失蹤汉形,失蹤者是張志新(化名)和其女友劉穎,沒想到半個月后倍阐,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體概疆,經(jīng)...
    沈念sama閱讀 43,466評論 1 300
  • 正文 獨居荒郊野嶺守林人離奇死亡,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點故事閱讀 35,937評論 2 323
  • 正文 我和宋清朗相戀三年峰搪,在試婚紗的時候發(fā)現(xiàn)自己被綠了岔冀。 大學(xué)時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片。...
    茶點故事閱讀 38,039評論 1 333
  • 序言:一個原本活蹦亂跳的男人離奇死亡概耻,死狀恐怖使套,靈堂內(nèi)的尸體忽然破棺而出,到底是詐尸還是另有隱情鞠柄,我是刑警寧澤侦高,帶...
    沈念sama閱讀 33,701評論 4 323
  • 正文 年R本政府宣布,位于F島的核電站厌杜,受9級特大地震影響奉呛,放射性物質(zhì)發(fā)生泄漏。R本人自食惡果不足惜夯尽,卻給世界環(huán)境...
    茶點故事閱讀 39,254評論 3 307
  • 文/蒙蒙 一瞧壮、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧匙握,春花似錦咆槽、人聲如沸。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,259評論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽麦射。三九已至,卻和暖如春灯谣,著一層夾襖步出監(jiān)牢的瞬間法褥,已是汗流浹背。 一陣腳步聲響...
    開封第一講書人閱讀 31,485評論 1 262
  • 我被黑心中介騙來泰國打工酬屉, 沒想到剛下飛機(jī)就差點兒被人妖公主榨干…… 1. 我叫王不留半等,地道東北人。 一個月前我還...
    沈念sama閱讀 45,497評論 2 354
  • 正文 我出身青樓呐萨,卻偏偏與公主長得像杀饵,于是被迫代替她去往敵國和親。 傳聞我的和親對象是個殘疾皇子谬擦,可洞房花燭夜當(dāng)晚...
    茶點故事閱讀 42,786評論 2 345

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

  • Android 自定義View的各種姿勢1 Activity的顯示之ViewRootImpl詳解 Activity...
    passiontim閱讀 171,504評論 25 707
  • 發(fā)現(xiàn) 關(guān)注 消息 iOS 第三方庫切距、插件、知名博客總結(jié) 作者大灰狼的小綿羊哥哥關(guān)注 2017.06.26 09:4...
    肇東周閱讀 12,024評論 4 62
  • 大概是一顆塵埃惨远,漫無目的地飄飛在這里谜悟,風(fēng)不把他帶走,卻教唆他迷了別人的眼睛北秽。他忘了自己的一切事情葡幸,包括自己的姓名,...
    山屈生閱讀 504評論 0 0
  • 通過webpack模塊化拆分backbone項目贺氓。思路是把Backbone,underscore和jQuery引入...
    李傲娢閱讀 1,316評論 0 1
  • 這一生要遇到的人很多很多,有的只是匆匆路過扬蕊,姓甚名誰都不清楚;有的或許與你有過摩擦搀别,或大或小;有的僅是點頭之交,...
    米粥xy閱讀 160評論 0 1