123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297 |
- //
- // BuyLimitHeader.h
- // YouHuiProject
- //
- // Created by 小花 on 2018/7/6.
- // Copyright © 2018年 kuxuan. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "MLMSegmentScroll.h"
- typedef enum : NSUInteger {
- /**
- * 默认
- */
- BuyLimitHeadStyleDefault,
- /**
- * line(下划线)
- */
- BuyLimitHeadStyleLine,
- /**
- * arrow(箭头)
- */
- BuyLimitHeadStyleArrow,
- /**
- * Slide(滑块)
- */
- BuyLimitHeadStyleSlide
- } BuyLimitHeadStyle;
- /**
- *
- * 分割样式,默认均分,其他样式按照标题长度计算
- */
- typedef enum : NSUInteger {
- /*
- * 默认均分,根据maxTitles计算宽度,均分
- */
- BuyLimitLayoutDefault,
-
- /*
- * 居中(标题不足一屏时选择样式,反之设置后按照居左)
- */
- BuyLimitLayoutCenter,
- /*
- * 居左
- */
- BuyLimitLayoutLeft
-
- } BuyLimitLayoutStyle;
- @protocol BuyLimitHeadDelegate <NSObject>
- /**
- * selected
- *
- * @param index index
- */
- - (void)didSelectedIndex:(NSInteger)index;
- @end
- @interface BuyLimitHeader : UIView
- /**
- * 初始化显示的下标。默认显示0
- */
- @property (nonatomic, assign) NSInteger showIndex;
- /**
- * 导航条的背景颜色
- */
- @property (nonatomic, strong) UIColor *headColor;
- /**
- * 非均分样式下按钮宽度 = 计算 + singleW_Add
- */
- @property (nonatomic, assign) CGFloat singleW_Add;
- /**
- * 设置完成后更改self的宽度 = titlesScroll.contentSize.width
- */
- @property (nonatomic, assign) BOOL equalSize;
- /*------------自定义导航栏可不设置------------*/
- /**
- * 选择状态下的颜色,完全自定义样式下可不设置
- */
- @property (nonatomic, strong) UIColor *selectColor;
- /**
- * 未选中状态下的颜色,完全自定义样式下可不设置
- */
- @property (nonatomic, strong) UIColor *deSelectColor;
- /**
- * 字体的大小,完全自定义样式下可不设置
- */
- @property (nonatomic, assign) CGFloat fontSize;
- /**
- * 选中状态的缩放比例,SegmentHeadStyleSlide风格下此属性无用,设置缩放比例滑动过程中会有相应动画
- */
- @property (nonatomic, assign) CGFloat fontScale;
- /**
- * 是否有背景图片
- */
- @property (nonatomic, assign) BOOL hadBackImg;
- ///背景图
- @property (nonatomic, strong) NSArray *backImages;
- /*------------添加更多按钮样式------------*/
- /**
- * 添加更多样式
- */
- @property (nonatomic, strong) UIView *moreButton;
- /**
- * 更多按钮宽度
- */
- @property (nonatomic, assign) CGFloat moreButton_width;
- /*------------下划线风格------------*/
- /**
- * 下划线的颜色
- */
- @property (nonatomic, strong) UIColor *lineColor;
- /**
- * 下划线高度
- */
- @property (nonatomic, assign) CGFloat lineHeight;
- /**
- * 下划线相对于正常状态下的百分比,默认为1
- */
- @property (nonatomic, assign) CGFloat lineScale;
- /*------------箭头风格------------*/
- /**
- * 箭头的颜色
- */
- @property (nonatomic, strong) UIColor *arrowColor;
- /*------------滑块风格------------*/
- /**
- * 滑块的颜色
- */
- @property (nonatomic, strong) UIColor *slideColor;
- /**
- * 滑块的高度
- */
- @property (nonatomic, assign) CGFloat slideHeight;
- /**
- * 滑块的圆角大小
- */
- @property (nonatomic, assign) CGFloat slideCorner;
- /**
- * 滑块相对于正常状态下的百分比,默认为1
- */
- @property (nonatomic, assign) CGFloat slideScale;
- @property (nonatomic, strong) NSArray *subTitles;
- /**
- * 顶部导航栏下方的边线
- */
- @property (nonatomic, assign) CGFloat bottomLineHeight;
- @property (nonatomic, strong) UIColor *bottomLineColor;
- /**
- * 设置当前屏幕最多显示的按钮数,只有在默认布局样式 - MLMSegmentLayoutDefault 下使用
- */
- @property (nonatomic, assign) CGFloat maxTitles;
- /**
- * 代理
- */
- @property (nonatomic, weak) id<BuyLimitHeadDelegate> delegate;
- /**
- * block
- */
- @property (nonatomic, copy) void(^selectedIndex)(NSInteger);
- /**
- * init method
- *
- * @param frame frame
- * @param titles titles array
- *
- * @return SegmentHeadView
- */
- - (instancetype)initWithFrame:(CGRect)frame
- titles:(NSArray *)titles;
- /**
- * init method
- *
- * @param frame frame
- * @param titles titles array
- * @param style SegmentHeadStyle
- *
- * @return SegmentHeadView
- */
- - (instancetype)initWithFrame:(CGRect)frame
- titles:(NSArray *)titles
- headStyle:(BuyLimitHeadStyle)style;
- /**
- * init method
- *
- * @param frame frame
- * @param titles titles array
- * @param style SegmentHeadStyle
- * @param layout MLMSegmentLayoutStyle
- *
- * @return SegmentHeadView
- */
- - (instancetype)initWithFrame:(CGRect)frame
- titles:(NSArray *)titles
- headStyle:(BuyLimitHeadStyle)style
- layoutStyle:(BuyLimitLayoutStyle)layout;
- /**
- * set currentIndex
- *
- * @param index , set currendIndex
- */
- - (void)setSelectIndex:(NSInteger)index;
- /**
- * animation by scale
- *
- * @param scale scale
- */
- - (void)changePointScale:(CGFloat)scale;
- /**
- * 在SegmentHeadStyleLine样式下,返回下划线view,可以根据自己的需求进行进一步定制,如自定义UIImageView添加
- *
- * @return SegmentHeadStyleLine样式下,下划线view
- */
- - (UIView *)getScrollLineView;
- /**
- * 返回导航栏下方的下划线,可根据需求进行定制,如绘制虚线,添加UIImageView等
- *
- * @return 返回导航栏下方的下划线
- */
- - (UIView *)getBottomLineView;
- /**
- * get sumWidth
- */
- - (CGFloat)getSumWidth;
- /**
- * 创建之后,初始化
- */
- - (void)defaultAndCreateView;
- /**
- * *重要*:与之关联的scroll动画结束调用
- */
- - (void)animationEnd;
- /**
- 更改titles
-
- @param titles title的数组
- */
- - (void)changeTitle:(NSArray *)titles;
- /**
- 下划线的view,用于自定义,如添加图片
-
- @return 下划线的view
- */
- - (UIView *)getLineView;
- - (UIScrollView *)titlesScroll;
- - (NSArray *)buttons;
- - (void)changeIndex:(NSInteger)index completion:(BOOL)completion;
- - (void)changeIndex:(NSInteger)index completion:(BOOL)completion animate:(BOOL)animate ;
- @end
|