仿今日頭條的滾動標題欄

前提:代碼即插即用,不依賴任何第三方和其他類,使用方便。

效果展示:

今日頭條(極速版)效果如下:
![BF79101F3806AF5E9EE3FDAD8A702E31.gif](https://upload-images.jianshu.io/upload_images/2325948-4fdd40bd181b932a.gif?imageMogr2/auto-orient/strip)
ZSTitleSelectedView效果如下:
33F1E42049654AB96D2206F5D0A63677-Segment 1.gif
封裝的代碼如下:

#import <UIKit/UIKit.h>

NS_ASSUME_NONNULL_BEGIN

/**
 zs20190320 滾動的title 
 */
@interface ZSTitleSelectedView : UIView

@property (nonatomic, strong) NSMutableArray *arrayTitles;       /**< zs20190320 標題數(shù)組  */



/**
 zs20190321 刷新標題數(shù)據(jù)源

 @param arrayTitles 數(shù)據(jù)源數(shù)組
 */
- (void)updateArrayTitles:(NSMutableArray *)arrayTitles;

@end

NS_ASSUME_NONNULL_END

#import "ZSTitleSelectedView.h"

#define kTagBtnsBase  1903200929  //zs20190321 多個標題按鈕 tag初值
#define kRGB(r,g,b) [UIColor colorWithRed:r/255.0 green:g/255.0 blue:b/255.0 alpha:1]
@interface ZSTitleSelectedView()

@property (nonatomic, strong) UIScrollView *scrollView;      /**< zs20190320 滾動視圖  */

@property (nonatomic, strong) UIButton *btnLastSelected;       /**< zs20190320 上次選中的按鈕 */

@end

@implementation ZSTitleSelectedView

- (instancetype)init
{
    self = [super init];
    if (self) {
        [self addContentView];
    }
    return self;
}
- (instancetype)initWithFrame:(CGRect)frame
{
    self = [super initWithFrame:frame];
    if (self) {
        [self addContentView];
    }
    return self;
}
- (void)layoutSubviews
{
    [super layoutSubviews];
    self.scrollView.frame = self.bounds;
}

- (void)updateArrayTitles:(NSMutableArray *)arrayTitles
{
    _arrayTitles = arrayTitles;
    [self reloadBtnsTitles];
}

#pragma mark - private
- (void)addContentView
{
    self.scrollView.backgroundColor = kRGB(125, 185, 240);
    [self addSubview:self.scrollView];
}
- (void)onClickAllBtns:(UIButton*)btn
{
    if (btn.selected) {
        return;
    }
    _btnLastSelected.selected = NO;
    btn.selected = YES;
    _btnLastSelected = btn;
    
    if (self.scrollView.contentSize.width < self.frame.size.width) {
        return;
    }
    //zs20190320 進行位置偏移 將選中的標題 移動到中間位置
    if (btn.center.x > self.frame.size.width/2.0) {
        if (btn.center.x - self.frame.size.width/2.0 < (self.scrollView.contentSize.width - self.frame.size.width)) {
            [self.scrollView setContentOffset:CGPointMake(btn.center.x - self.frame.size.width/2.0, 0) animated:YES];
        } else {
            [self.scrollView setContentOffset:CGPointMake((self.scrollView.contentSize.width - self.frame.size.width), 0) animated:YES];
        }
    } else {
            [self.scrollView setContentOffset:CGPointMake(0, 0) animated:YES];
    }
}
- (void)reloadBtnsTitles
{
    for (int i = 0; i < self.arrayTitles.count ; i ++) {
        
        UIButton *btnTitle = [UIButton buttonWithType:UIButtonTypeCustom];
        [btnTitle setTitle:_arrayTitles[i] forState:(UIControlStateNormal)];
        btnTitle.titleLabel.font = [UIFont systemFontOfSize:14];
        [btnTitle setTitleColor:kRGB(31, 31, 31) forState:(UIControlStateNormal)];
        [btnTitle setTitleColor:kRGB(246, 78, 79) forState:(UIControlStateSelected)];
        btnTitle.tag = i + kTagBtnsBase;
        if (i == 0) {
            _btnLastSelected = btnTitle;
            btnTitle.selected = YES;
            btnTitle.frame = CGRectMake(15,
                                        0,
                                        [self getTextWidth:self.arrayTitles[i] font:14] + 10,
                                        self.frame.size.height);
        } else {
            UIButton *btnLast = (UIButton*)[self.scrollView viewWithTag:i + kTagBtnsBase -1];
            btnTitle.frame = CGRectMake(btnLast.frame.origin.x + btnLast.frame.size.width + 10,
                                        0,
                                        [self getTextWidth:self.arrayTitles[i] font:14] + 10,
                                        self.frame.size.height);
        }
        [btnTitle addTarget:self action:@selector(onClickAllBtns:) forControlEvents:(UIControlEventTouchUpInside)];
        [_scrollView addSubview:btnTitle];
    }
    
    
    if (self.arrayTitles.count > 1) {//zs20190321 保證兩個及兩個以上的標題
        
        UIButton *btnLast = [self.scrollView viewWithTag:self.arrayTitles.count - 1 + kTagBtnsBase];
        //zs20190321 判斷最后一個按鈕的位置 是否超過父視圖 如果沒超過則將剩余的寬度補到兩個按鈕之間的間隙上
        if (btnLast.frame.origin.x + btnLast.frame.size.width + 15 < self.frame.size.width) {
            
            //zs20190321 如果標題在屏幕上能全部展示 則做位置做均勻分配處理
            CGFloat widthPara = self.frame.size.width - (btnLast.frame.origin.x + btnLast.frame.size.width + 15);
            CGFloat widthAdd = widthPara/(self.arrayTitles.count -1);
            for (int i = 1; i < self.arrayTitles.count; i ++) {
                UIButton *btn= (UIButton*)[self.scrollView viewWithTag:i + kTagBtnsBase];
                btn.frame = CGRectMake(btn.frame.origin.x + widthAdd,
                                       btn.frame.origin.y,
                                       btn.frame.size.width,
                                       btn.frame.size.height);
                if (i > 1) {
                    UIButton *btnFront = (UIButton*)[self.scrollView viewWithTag:i + kTagBtnsBase -1];
                    btn.frame = CGRectMake(btnFront.frame.origin.x + btnFront.frame.size.width + 10 + widthAdd,
                                           btn.frame.origin.y,
                                           btn.frame.size.width,
                                           btn.frame.size.height);
                }
            }
        } else {//zs20190321 所有標題在屏幕上展示不下 需要滾動
            _scrollView.contentSize = CGSizeMake(btnLast.frame.origin.x + btnLast.frame.size.width  + 15, self.frame.size.height);
        }
    }
    
    //zs20190321 如果只有一個標題或者兩個標題 按照具體需求去適配吧
}

#pragma mark ------- 計算文本在對應字體下的長度
- (CGFloat)getTextWidth:(NSString*)text font:(CGFloat)fontPara
{
    if ([text isKindOfClass:[NSString class]]) {
        
        CGSize size = [text sizeWithAttributes:@{NSFontAttributeName:[UIFont systemFontOfSize:fontPara]}];
        return size.width;
    } else {
        return 0;
    }
}
#pragma mark - getter
- (UIScrollView *)scrollView
{
    if (_scrollView == nil) {
        _scrollView = [[UIScrollView alloc] init];
        _scrollView.showsHorizontalScrollIndicator = NO;
    }
    return _scrollView;
}

@end

客戶端調(diào)用代碼如下:
#import "ViewController.h"
#import "ZSTitleSelectedView.h"

@interface ViewController ()

@property (nonatomic, strong) ZSTitleSelectedView *viewTitleSelected;        /**< zs20190321 標題視圖  */

@end

@implementation ViewController

- (void)viewDidLoad {
   
    [super viewDidLoad];

    [self.view addSubview:self.viewTitleSelected];
    
    self.viewTitleSelected.frame = CGRectMake(0, 31, self.view.frame.size.width, 40);

    NSMutableArray *arrayTitles = [NSMutableArray arrayWithObjects:
                                   @"推薦",
                                   @"視頻",
                                   @"熱點",
                                   @"北京",
                                   @"娛樂",
                                   @"音樂",
                                   @"圖片",
                                   @"懂車帝",
                                   @"體育",
                                   @"財經(jīng)",
                                   @"房產(chǎn)",
                                   @"國際",
                                   @"健康",
                                   @"科技",
                                   @"軍事",
                                   @"歷史",
                                   @"值點",
                                   @"小說",
                                   nil];
    [self.viewTitleSelected updateArrayTitles:arrayTitles];
}





- (ZSTitleSelectedView *)viewTitleSelected
{
    if (_viewTitleSelected == nil) {
        
        _viewTitleSelected = [[ZSTitleSelectedView alloc] init];
    }
    return _viewTitleSelected;
}
GitHub下載地址:https://github.com/zhiyoukaifa/ZSTitleSelectedView.git
最后編輯于
?著作權歸作者所有,轉載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個濱河市矢洲,隨后出現(xiàn)的幾起案子,更是在濱河造成了極大的恐慌缩焦,老刑警劉巖读虏,帶你破解...
    沈念sama閱讀 206,839評論 6 482
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件责静,死亡現(xiàn)場離奇詭異,居然都是意外死亡盖桥,警方通過查閱死者的電腦和手機灾螃,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,543評論 2 382
  • 文/潘曉璐 我一進店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來揩徊,“玉大人腰鬼,你說我怎么就攤上這事∷芑模” “怎么了熄赡?”我有些...
    開封第一講書人閱讀 153,116評論 0 344
  • 文/不壞的土叔 我叫張陵,是天一觀的道長齿税。 經(jīng)常有香客問我彼硫,道長,這世上最難降的妖魔是什么凌箕? 我笑而不...
    開封第一講書人閱讀 55,371評論 1 279
  • 正文 為了忘掉前任拧篮,我火速辦了婚禮,結果婚禮上牵舱,老公的妹妹穿的比我還像新娘串绩。我一直安慰自己,他們只是感情好芜壁,可當我...
    茶點故事閱讀 64,384評論 5 374
  • 文/花漫 我一把揭開白布赏参。 她就那樣靜靜地躺著,像睡著了一般沿盅。 火紅的嫁衣襯著肌膚如雪。 梳的紋絲不亂的頭發(fā)上纫溃,一...
    開封第一講書人閱讀 49,111評論 1 285
  • 那天腰涧,我揣著相機與錄音,去河邊找鬼紊浩。 笑死窖铡,一個胖子當著我的面吹牛,可吹牛的內(nèi)容都是我干的坊谁。 我是一名探鬼主播费彼,決...
    沈念sama閱讀 38,416評論 3 400
  • 文/蒼蘭香墨 我猛地睜開眼,長吁一口氣:“原來是場噩夢啊……” “哼口芍!你這毒婦竟也來了箍铲?” 一聲冷哼從身側響起,我...
    開封第一講書人閱讀 37,053評論 0 259
  • 序言:老撾萬榮一對情侶失蹤鬓椭,失蹤者是張志新(化名)和其女友劉穎颠猴,沒想到半個月后关划,有當?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體,經(jīng)...
    沈念sama閱讀 43,558評論 1 300
  • 正文 獨居荒郊野嶺守林人離奇死亡翘瓮,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點故事閱讀 36,007評論 2 325
  • 正文 我和宋清朗相戀三年贮折,在試婚紗的時候發(fā)現(xiàn)自己被綠了。 大學時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片资盅。...
    茶點故事閱讀 38,117評論 1 334
  • 序言:一個原本活蹦亂跳的男人離奇死亡调榄,死狀恐怖,靈堂內(nèi)的尸體忽然破棺而出呵扛,到底是詐尸還是另有隱情每庆,我是刑警寧澤,帶...
    沈念sama閱讀 33,756評論 4 324
  • 正文 年R本政府宣布择份,位于F島的核電站扣孟,受9級特大地震影響,放射性物質(zhì)發(fā)生泄漏荣赶。R本人自食惡果不足惜凤价,卻給世界環(huán)境...
    茶點故事閱讀 39,324評論 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一處隱蔽的房頂上張望拔创。 院中可真熱鬧利诺,春花似錦、人聲如沸剩燥。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,315評論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽灭红。三九已至侣滩,卻和暖如春,著一層夾襖步出監(jiān)牢的瞬間变擒,已是汗流浹背君珠。 一陣腳步聲響...
    開封第一講書人閱讀 31,539評論 1 262
  • 我被黑心中介騙來泰國打工, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留娇斑,地道東北人策添。 一個月前我還...
    沈念sama閱讀 45,578評論 2 355
  • 正文 我出身青樓,卻偏偏與公主長得像毫缆,于是被迫代替她去往敵國和親唯竹。 傳聞我的和親對象是個殘疾皇子,可洞房花燭夜當晚...
    茶點故事閱讀 42,877評論 2 345