iOS自定義Segment控件

在我們開(kāi)發(fā)中經(jīng)常會(huì)遇到這樣的需求 如下圖:


下面是我自定義這個(gè)控件的過(guò)程:

  • 新建一個(gè)UIView
SegmentView.h中:
#import <UIKit/UIKit.h>
typedef void(^SelectIndexBlock)(NSInteger selectIndex);
@interface SegmentView : UIView

NS_ASSUME_NONNULL_BEGIN
//默認(rèn)背景顏色
@property (nonatomic, strong) UIColor *bgColor;
//默認(rèn)圖片顏色
@property (nonatomic, strong) UIColor *imageColor;
//默認(rèn)字體顏色
@property (nonatomic, strong) UIColor *titleColor;
//選中背景顏色
@property (nonatomic, strong) UIColor *selectBgColor;
//選中圖片顏色
@property (nonatomic, strong) UIColor *selectImageColor;
//選中字體顏色
@property (nonatomic, strong) UIColor *selectTitleColor;
//滾動(dòng)條顏色
@property (nonatomic, strong) UIColor *scrollViewColor;

@property (nonatomic, copy) SelectIndexBlock selectBlock;

@property (nonatomic, assign) NSInteger selectedIndex;
//外部調(diào)用的接口
- (instancetype)initWithFrame:(CGRect)frame imageArray:(NSArray *)imageArray selectImageArray:(NSArray *)selectImageArray titleArray:(NSArray *)titleArray defaultSelectIndex:(NSInteger)selectedIndex selectBlock:(SelectIndexBlock)selectBlock;

- (void)selectedIndex:(NSInteger)selectIndex;

@end
NS_ASSUME_NONNULL_END
SegmentView.m中:

#import "SegmentView.h"
#import "MacroDefinition.h"
#import "HJTCustomMD.h"
@interface SegmentView ()
@property (weak, nonatomic) IBOutlet UIButton *buttonOne;
@property (weak, nonatomic) IBOutlet UIButton *buttonTwo;
@property (weak, nonatomic) IBOutlet UIButton *buttonThree;
@property (weak, nonatomic) IBOutlet UIImageView *imageOne;
@property (weak, nonatomic) IBOutlet UIImageView *imageTwo;
@property (weak, nonatomic) IBOutlet UIImageView *imageThree;
@property (weak, nonatomic) IBOutlet UILabel *labelOne;
@property (weak, nonatomic) IBOutlet UILabel *labelTwo;
@property (weak, nonatomic) IBOutlet UILabel *labelThree;
@property (weak, nonatomic) IBOutlet UIView *selectedView;
@property (nonatomic, strong) NSArray *titleArray;
@property (nonatomic, strong) NSArray *imageArray;
@property (nonatomic, strong) NSArray *selectImageArray;


@property (nonatomic, strong) NSArray *labelArray;
@property (nonatomic, strong) NSArray *defaultImageArray;

@end
@implementation SegmentView

-(instancetype)initWithFrame:(CGRect)frame imageArray:(NSArray * __nonnull)imageArray selectImageArray:(NSArray * __nonnull)selectImageArray titleArray:(NSArray * __nonnull)titleArray defaultSelectIndex:(NSInteger)selectedIndex selectBlock:(SelectIndexBlock __nonnull)selectBlock{
    self = [[[NSBundle mainBundle] loadNibNamed:@"SegmentView" owner:self options:nil] objectAtIndex:0];
    if (self) {
        self.frame = frame;
        NSAssert([imageArray count] == 3 && [titleArray count] == 3 && [selectImageArray count] == 3, @"Parameters error");
        self.selectBlock = selectBlock;
        self.titleArray = titleArray;
        self.imageArray = imageArray;
        self.selectImageArray = selectImageArray;
        self.selectedIndex = selectedIndex;
        
        [self initViews];
    }
    return  self;
}


- (void)selectedIndex:(NSInteger)selectIndex
{
    NSAssert(selectIndex >= 0 && selectIndex <= 2, @"Parameters error");
    
    [self selectIndex:selectIndex];
}


- (void)initViews
{
    self.labelOne.text = self.titleArray[0];
    self.labelTwo.text = self.titleArray[1];
    self.labelThree.text = self.titleArray[2];
    
    self.imageOne.image = [UIImage imageNamed:self.imageArray[0]];
    self.imageTwo.image = [UIImage imageNamed:self.imageArray[1]];
    self.imageThree.image = [UIImage imageNamed:self.imageArray[2]];
    
    self.defaultImageArray = [NSArray arrayWithObjects:self.imageOne,self.imageTwo,self.imageThree, nil];
    self.labelArray = [NSArray arrayWithObjects:self.labelOne,self.labelTwo,self.labelThree, nil];
    
    self.selectedView.backgroundColor = RGB(135, 244, 224);
    
    self.imageOne.image = [UIImage imageNamed:self.selectImageArray[0]] ;
}

- (void)selectIndex:(NSInteger)selectIndex
{
    for (UILabel *label in self.labelArray) {
        label.textColor = RGB(158, 155, 156);
    }
    
    self.imageOne.image = [UIImage imageNamed:self.imageArray[0]];
    self.imageTwo.image = [UIImage imageNamed:self.imageArray[1]];
    self.imageThree.image = [UIImage imageNamed:self.imageArray[2]];
    
    switch (selectIndex) {
        case 0:
        {
            _labelOne.textColor = RGB(135, 244, 224);
            self.imageOne.image = [UIImage imageNamed:self.selectImageArray[0]];
            
            WS
            [UIView animateWithDuration:0.5 delay:0 options:UIViewAnimationOptionCurveEaseOut animations:^{
                SS
                strongSelf.selectedView.center = CGPointMake(strongSelf.buttonOne.center.x, strongSelf.selectedView.center.y);
            } completion:nil];
            
        }
            break;
            
        case 1:
        {
            _labelTwo.textColor = RGB(135, 244, 224);
            self.imageTwo.image = [UIImage imageNamed:self.selectImageArray[1]];
            
            WS
            [UIView animateWithDuration:0.5 delay:0 options:UIViewAnimationOptionCurveEaseOut animations:^{
                SS
                strongSelf.selectedView.center = CGPointMake(strongSelf.buttonTwo.center.x, strongSelf.selectedView.center.y);
            } completion:nil];
            
        }
            break;
            
        case 2:
        {
            _labelThree.textColor = RGB(135, 244, 224);
            self.imageThree.image = [UIImage imageNamed:self.selectImageArray[2]];
            
            
            WS
            [UIView animateWithDuration:0.5 delay:0 options:UIViewAnimationOptionCurveEaseOut animations:^{
                SS
                strongSelf.selectedView.center = CGPointMake(strongSelf.buttonThree.center.x, strongSelf.selectedView.center.y);
            } completion:nil];
            
            
        }
            break;
            
        default:
            break;
    }
}

- (IBAction)select:(UIButton *)sender {
    switch (sender.tag) {
        case 111:
        {
            [self selectIndex:0];
            self.selectBlock(0);
            
        }
            break;
            
        case 222:
        {
            [self selectIndex:1];
            self.selectBlock(1);
        }
            break;
            
        case 333:
        {
            [self selectIndex:2];
            self.selectBlock(2);
        }
            break;
            
        default:
            break;
    }
    
}


@end
  • 新建一個(gè)XIB文件(新建這個(gè)xib的時(shí)候名字和剛才的UIView的類(lèi)名保持一致):

將其class設(shè)置為剛才建立的UIView的類(lèi)名 并將其進(jìn)行約束

  • 下面簡(jiǎn)要說(shuō)一下這個(gè)過(guò)程:
    (1)拖入一個(gè)UIButton飞蛹,設(shè)置其在容器中居中對(duì)齊巾腕,設(shè)置上下約束。
    (2)復(fù)制兩個(gè)UIButton分別設(shè)置距離容器左邊距 擦盾、右邊距和到中間Button的水平距離怎憋。
    (3)選中這三個(gè)Button設(shè)置它們水平中心線對(duì)齊姨丈,然后分別設(shè)置它們的tag值。
    (4)按鈕上的Image和Label的設(shè)置和UIButton的約束方式是一樣的就不在贅述埃难。
    (5)最后是哪一條滾動(dòng)的線條莹弊,設(shè)置它的寬、高以及和UIButton底部對(duì)齊凯砍。好了約束完了箱硕,這個(gè)控件也封裝完了。

使用

(1)在需要使用的類(lèi)中導(dǎo)入#import "SegmentView.h",將其聲明為全局變量悟衩。

@interface ViewController (){
    SegmentView *segment;
}
segment = [[SegmentView alloc]initWithFrame:CGRectMake(0, 64, WIDTH, 68) imageArray:@[@"Search_repository-gray@2x", @"Search_community-gray@2x", @"Search_say-gray@2x"] selectImageArray:@[@"Search_repository@2x",@"Search_community@2x",@"Search_say@2x"] titleArray:@[@"one",@"two",@"three"] defaultSelectIndex:1 selectBlock:^(NSInteger selectIndex) {
        
    }];
    segment.backgroundColor = [UIColor whiteColor];
    [self.view addSubview:segment];

Demo地址:https://github.com/hejintaochenxin/segMent

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
  • 序言:七十年代末剧罩,一起剝皮案震驚了整個(gè)濱河市,隨后出現(xiàn)的幾起案子座泳,更是在濱河造成了極大的恐慌惠昔,老刑警劉巖,帶你破解...
    沈念sama閱讀 206,602評(píng)論 6 481
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件挑势,死亡現(xiàn)場(chǎng)離奇詭異镇防,居然都是意外死亡,警方通過(guò)查閱死者的電腦和手機(jī)潮饱,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,442評(píng)論 2 382
  • 文/潘曉璐 我一進(jìn)店門(mén)来氧,熙熙樓的掌柜王于貴愁眉苦臉地迎上來(lái),“玉大人,你說(shuō)我怎么就攤上這事啦扬≈锌瘢” “怎么了?”我有些...
    開(kāi)封第一講書(shū)人閱讀 152,878評(píng)論 0 344
  • 文/不壞的土叔 我叫張陵扑毡,是天一觀的道長(zhǎng)胃榕。 經(jīng)常有香客問(wèn)我,道長(zhǎng)瞄摊,這世上最難降的妖魔是什么勋又? 我笑而不...
    開(kāi)封第一講書(shū)人閱讀 55,306評(píng)論 1 279
  • 正文 為了忘掉前任,我火速辦了婚禮换帜,結(jié)果婚禮上楔壤,老公的妹妹穿的比我還像新娘。我一直安慰自己膜赃,他們只是感情好挺邀,可當(dāng)我...
    茶點(diǎn)故事閱讀 64,330評(píng)論 5 373
  • 文/花漫 我一把揭開(kāi)白布揉忘。 她就那樣靜靜地躺著跳座,像睡著了一般。 火紅的嫁衣襯著肌膚如雪泣矛。 梳的紋絲不亂的頭發(fā)上疲眷,一...
    開(kāi)封第一講書(shū)人閱讀 49,071評(píng)論 1 285
  • 那天,我揣著相機(jī)與錄音您朽,去河邊找鬼狂丝。 笑死,一個(gè)胖子當(dāng)著我的面吹牛哗总,可吹牛的內(nèi)容都是我干的几颜。 我是一名探鬼主播,決...
    沈念sama閱讀 38,382評(píng)論 3 400
  • 文/蒼蘭香墨 我猛地睜開(kāi)眼讯屈,長(zhǎng)吁一口氣:“原來(lái)是場(chǎng)噩夢(mèng)啊……” “哼蛋哭!你這毒婦竟也來(lái)了?” 一聲冷哼從身側(cè)響起涮母,我...
    開(kāi)封第一講書(shū)人閱讀 37,006評(píng)論 0 259
  • 序言:老撾萬(wàn)榮一對(duì)情侶失蹤谆趾,失蹤者是張志新(化名)和其女友劉穎,沒(méi)想到半個(gè)月后叛本,有當(dāng)?shù)厝嗽跇?shù)林里發(fā)現(xiàn)了一具尸體沪蓬,經(jīng)...
    沈念sama閱讀 43,512評(píng)論 1 300
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡,尸身上長(zhǎng)有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 35,965評(píng)論 2 325
  • 正文 我和宋清朗相戀三年来候,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了跷叉。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片。...
    茶點(diǎn)故事閱讀 38,094評(píng)論 1 333
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡,死狀恐怖云挟,靈堂內(nèi)的尸體忽然破棺而出峡眶,到底是詐尸還是另有隱情,我是刑警寧澤植锉,帶...
    沈念sama閱讀 33,732評(píng)論 4 323
  • 正文 年R本政府宣布辫樱,位于F島的核電站,受9級(jí)特大地震影響俊庇,放射性物質(zhì)發(fā)生泄漏狮暑。R本人自食惡果不足惜,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,283評(píng)論 3 307
  • 文/蒙蒙 一辉饱、第九天 我趴在偏房一處隱蔽的房頂上張望搬男。 院中可真熱鬧,春花似錦彭沼、人聲如沸缔逛。這莊子的主人今日做“春日...
    開(kāi)封第一講書(shū)人閱讀 30,286評(píng)論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽(yáng)褐奴。三九已至,卻和暖如春于毙,著一層夾襖步出監(jiān)牢的瞬間敦冬,已是汗流浹背。 一陣腳步聲響...
    開(kāi)封第一講書(shū)人閱讀 31,512評(píng)論 1 262
  • 我被黑心中介騙來(lái)泰國(guó)打工唯沮, 沒(méi)想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留脖旱,地道東北人。 一個(gè)月前我還...
    沈念sama閱讀 45,536評(píng)論 2 354
  • 正文 我出身青樓介蛉,卻偏偏與公主長(zhǎng)得像萌庆,于是被迫代替她去往敵國(guó)和親。 傳聞我的和親對(duì)象是個(gè)殘疾皇子币旧,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 42,828評(píng)論 2 345

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

  • http://www.cocoachina.com/cms/wap.php?action=article&id=1...
    Kevin追夢(mèng)先生閱讀 1,005評(píng)論 0 3
  • 發(fā)現(xiàn) 關(guān)注 消息 iOS 第三方庫(kù)践险、插件、知名博客總結(jié) 作者大灰狼的小綿羊哥哥關(guān)注 2017.06.26 09:4...
    肇東周閱讀 12,029評(píng)論 4 62
  • 1 我從未像現(xiàn)在這樣珍惜獨(dú)處的時(shí)光佳恬。獨(dú)處的時(shí)候全世界都是你的捏境。 獨(dú)處的時(shí)候,你都在做什么毁葱?是看書(shū)垫言?是發(fā)呆,還是看電...
    月島時(shí)間閱讀 386評(píng)論 10 9
  • 今天晚上找到一段之前一直保存的李欣頻老師的分享倾剿,主要講了怎樣調(diào)頻情緒筷频。正好在喜馬拉雅也找到了幾段她進(jìn)行情緒調(diào)...
    手藝人海倫閱讀 209評(píng)論 0 0
  • 馬克終于到了蚌成,第一次用,表示速度超級(jí)快凛捏,可是這質(zhì)量担忧,也是心累
    眠花城閱讀 175評(píng)論 7 4