iOS 自定义分段切换控件

图1

图2

以上就是实现的效果,支持左右滚动进行切换。
我们在实现上用到了Masonry 和UIView+LGJExtension,其中UIView+LGJExtension中包含了

@property (nonatomic, assign) CGPoint origin;
@property (nonatomic, assign) CGSize size;
@property (nonatomic, assign) CGFloat top;
@property (nonatomic, assign) CGFloat left;
@property (nonatomic, assign) CGFloat bottom;
@property (nonatomic, assign) CGFloat right;
@property (nonatomic, assign) CGFloat width;
@property (nonatomic, assign) CGFloat height;
@property (nonatomic, assign) CGFloat x;
@property (nonatomic, assign) CGFloat y;
@property (nonatomic, assign) CGFloat centerX;
@property (nonatomic, assign) CGFloat centerY;

以及其具体实现。
首先我们自定义LGJSegmentView 继承UIView

#import <UIKit/UIKit.h>

@interface LGJSegmentView : UIView

@property(nonatomic,copy)void (^segmentClickBlock)(NSInteger index);

/**
 根据标题个数进行初始化

 @param titles 标题数组
 @return 创建好的视图返回
 */
-(instancetype)initWithSegmentedTitles:(NSArray *)titles;


/**
 滚动到第几个标题处

 @param index 下表 0 1 2.。
 */
-(void)sliderToCurrentSelectedIndex:(NSInteger )index;

@end

在.m中声明以下属性

@property(nonatomic,strong)NSArray *titleArr;
@property(nonatomic,strong)NSMutableArray *buttonArr;
@property(nonatomic,strong)UIView *segmentedContainer;
@property(nonatomic,strong)UIView *sliderLine;
@property(nonatomic,strong)UIView *bottomLine;

同时,我们把控件距离左右边的边距,高,宽等也出去出来,方便改写。

#define ScreenWidth [UIScreen mainScreen].bounds.size.width
#define Margin 15
#define Height 40
#define LineWidth (ScreenWidth - Margin * 2)/(self.titleArr.count)

LGJSegmentedView.m

@implementation LGJSegmentView

-(instancetype)initWithSegmentedTitles:(NSArray *)titles{
    if (self = [super init]) {
        self.titleArr = titles;
        self.backgroundColor = [UIColor whiteColor];
        [self createSegmentView];
        [self setUpViews];
    }
    return self;
}

-(void)createSegmentView{
    self.buttonArr = [NSMutableArray array];
    for (int index = 0; index < self.titleArr.count; index++) {
        UIButton *button = [UIButton buttonWithType:UIButtonTypeCustom];
        button.contentVerticalAlignment = UIControlContentVerticalAlignmentCenter;
        [button setTitle:self.titleArr[index] forState:UIControlStateNormal];
        [button setTitle:self.titleArr[index] forState:UIControlStateSelected];
        [button setTitleColor:RGB_HEX(0x666666) forState:UIControlStateNormal];
        [button setTitleColor:RGB_HEX(0xff4400) forState:UIControlStateSelected];
        button.titleLabel.font = [UIFont systemFontOfSize:15.0f];
        button.titleLabel.adjustsFontSizeToFitWidth = YES;
        if (index == 0) {
            button.selected = YES;
        }else{
            button.selected
            = NO;
        }
        button.tag = index;
        [button addTarget:self action:@selector(buttonClicked:) forControlEvents:UIControlEventTouchUpInside];
        [self.buttonArr addObject:button];
    }
}


-(void)setUpViews{
    [self addSubview:self.segmentedContainer];
    for (UIButton *button in self.buttonArr) {
        [self.segmentedContainer addSubview:button];
    }
    [self addSubview:self.sliderLine];
    [self addSubview:self.bottomLine];
}

-(void)layoutSubviews{
    [super layoutSubviews];
    
    self.segmentedContainer.top = 0;
    self.segmentedContainer.left = Margin;
    self.segmentedContainer.width = self.width - Margin*2;
    self.segmentedContainer.height = self.height;
    
    self.bottomLine.frame = CGRectMake(0, self.height-APPCONFIG_UNIT_LINE_WIDTH, self.width, APPCONFIG_UNIT_LINE_WIDTH);
    //每个子segment的宽度
    CGFloat segmentWith = (self.width-15*2) / self.buttonArr.count;
    for (int i=0; i<self.buttonArr.count; i++) {
        UIButton *button = (UIButton *)self.buttonArr[i];
        button.top = 0;
        button.left = i * segmentWith;
        button.width = segmentWith;
        button.height = Height;
    }
    //设置底部红色滑动线条的位置
    self.sliderLine.bottom = self.bottomLine.top;
    self.sliderLine.left = self.segmentedContainer.left;
    self.sliderLine.width = segmentWith;
    self.sliderLine.height = 2.0f;
}


-(void)buttonClicked:(UIButton *)sender{
    [self selectedSegmentButton:sender];
    if (self.segmentClickBlock) {
        self.segmentClickBlock(sender.tag);
    }
}

-(void)selectedSegmentButton:(UIButton *)selectedButton{
    selectedButton.selected = YES;
    [self changeSelectedWithSelectedButton:selectedButton];
}

-(void)changeSelectedWithSelectedButton:(UIButton *)selectedButton{
    for (UIButton *button in _buttonArr) {
        if (![button isEqual:selectedButton]) {
            button.selected = NO;
        }
    }
    [self setSliderLinePosition];
}

-(void)setSliderLinePosition{
    UIButton *button = [self selectedButton];
    [UIView animateWithDuration:0.3f animations:^{
        self.sliderLine.left = Margin + button.tag * LineWidth;
    }];
}

-(UIButton *)selectedButton{
    NSInteger selIndex = [self selectedIndex];
    if (selIndex == -1 || self.buttonArr.count <= selIndex) {
        return nil;
    }
    return self.buttonArr[selIndex];
}
- (NSInteger)selectedIndex
{
    for(int i = 0; i < self.buttonArr.count; i++) {
        UIButton *button = (UIButton *)self.buttonArr[i];
        if (button.selected) {
            return i;
        }
    }
    return -1;
}

-(void)sliderToCurrentSelectedIndex:(NSInteger)index{
    UIButton *button = self.buttonArr[index];
    [self selectedSegmentButton:button];
}
#pragma mark - 懒加载
- (UIView *)segmentedContainer
{
    if (!_segmentedContainer) {
        _segmentedContainer = [[UIView alloc] init];
        _segmentedContainer.backgroundColor = [UIColor whiteColor];
    }
    return _segmentedContainer;
}

-(UIView *)sliderLine
{
    if (!_sliderLine) {
        _sliderLine = [[UIView alloc] init];
        _sliderLine.backgroundColor = RGB_HEX(0xff4400);
    }
    return _sliderLine;
}

-(UIView *)bottomLine
{
    if (!_bottomLine) {
        _bottomLine = [[UIView alloc] init];
        _bottomLine.backgroundColor = RGB_HEX(0xeeeeee);
    }
    return _bottomLine;
}

@end

在使用的时候也是很方便。多数时候我们会结合多个控制器来实现。这个时候往往的做法就是添加子控制器。

#pragma mark - 懒加载
[self.view addSubview:self.segment];

[self.view addSubview:self.scrollView];

[self.segment mas_makeConstraints:^(MASConstraintMaker *make) {
        make.left.right.mas_equalTo(self.view);
        make.top.mas_equalTo(LGJNavigationBarAdapterContentInsetTop);
        make.size.mas_equalTo(CGSizeMake(APPCONFIG_UI_SCREEN_FWIDTH, 40));
    }];
 [self.scrollView mas_makeConstraints:^(MASConstraintMaker *make) {
        make.left.right.bottom.mas_equalTo(self.view);
        make.top.mas_equalTo(self.segment.mas_bottom);
   }];
  self.scrollView.contentSize = CGSizeMake(self.childViewControllers.count*APPCONFIG_UI_SCREEN_FWIDTH, 0);


- (LGJSegmentView *)segment
{
    if (!_segment) {
        NSArray *titles = @[@"广州",@"北京",@"上海",@"深圳"];
        _segment = [[LGJSegmentView alloc] initWithSegmentedTitles:titles];
        __weak typeof(self)weakSelf = self;
        _segment.segmentClickBlock = ^(NSInteger index) {
            // 让底部的内容scrollView滚动到对应位置
            CGPoint offset = weakSelf.scrollView.contentOffset;
            offset.x = index * weakSelf.scrollView.frame.size.width;
            [weakSelf.scrollView setContentOffset:offset animated:YES];
        };
    }
    return _segment;
}
    //添加子控制器
    NSArray *titles = @[@"广州",@"北京",@"上海",@"深圳"];
    for (int i=0; i<titles.count; i++) {
        LGJViewController *childCtrl = [[LGJViewController alloc] initWithChildViewType:i];
        [self addChildViewController:childCtrl];
    }

我们在点击标题进行切换,或者是滚动标题以下视图进行切换,需要绑定。

- (void)scrollViewDidEndDecelerating:(UIScrollView *)scrollView
{
    [self scrollViewDidEndScrollingAnimation:scrollView];
}

- (void)scrollViewDidEndScrollingAnimation:(UIScrollView *)scrollView
{
    CGFloat width = scrollView.frame.size.width;
    CGFloat height = scrollView.frame.size.height;
    CGFloat offsetX = scrollView.contentOffset.x;
    // 当前位置需要显示的控制器的索引
    NSInteger index = offsetX / width;
    //设置optionalNewsSegment滚动到控制器对应的位置
    [self.segment sliderToCurrentSelectedIndex:index];
    //容错处理
    if (index<0) return;
    // 取出需要显示的控制器
    LGJViewController *willShowVC = self.childViewControllers[index];
    // 如果当前位置已经显示过了,就直接返回
    if ([willShowVC isViewLoaded]) return;
    // 添加控制器的view到scrollView中;
    willShowVC.view.frame = CGRectMake(offsetX, 0, width, height);
    [scrollView addSubview:willShowVC.view];
}
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 202,723评论 5 476
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,080评论 2 379
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 149,604评论 0 335
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,440评论 1 273
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,431评论 5 364
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,499评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,893评论 3 395
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,541评论 0 256
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,751评论 1 296
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,547评论 2 319
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,619评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,320评论 4 318
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,890评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,896评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,137评论 1 259
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 42,796评论 2 349
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,335评论 2 342

推荐阅读更多精彩内容