口袋版本的一折买

MLMSegmentHead.h 6.7KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320
  1. //
  2. // MLMSegmentHead.h
  3. // MLMSegmentPage
  4. //
  5. // Created by my on 16/11/4.
  6. // Copyright © 2016年 my. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. typedef enum : NSUInteger {
  10. /**
  11. * 默认
  12. */
  13. SegmentHeadStyleDefault,
  14. /**
  15. * line(下划线)
  16. */
  17. SegmentHeadStyleLine,
  18. /**
  19. * arrow(箭头)
  20. */
  21. SegmentHeadStyleArrow,
  22. /**
  23. * Slide(滑块)
  24. */
  25. SegmentHeadStyleSlide
  26. } MLMSegmentHeadStyle;
  27. /**
  28. *
  29. * 分割样式,默认均分,其他样式按照标题长度计算
  30. */
  31. typedef enum : NSUInteger {
  32. /*
  33. * 默认均分,根据maxTitles计算宽度,均分
  34. */
  35. MLMSegmentLayoutDefault,
  36. /*
  37. * 居中(标题不足一屏时选择样式,反之设置后按照居左)
  38. */
  39. MLMSegmentLayoutCenter,
  40. /*
  41. * 居左
  42. */
  43. MLMSegmentLayoutLeft
  44. } MLMSegmentLayoutStyle;
  45. @protocol MLMSegmentHeadDelegate <NSObject>
  46. /**
  47. * selected
  48. *
  49. * @param index index
  50. */
  51. - (void)didSelectedIndex:(NSInteger)index;
  52. @property UIImageView *aF6Y9meRIB;
  53. @property UIInputView *aogdn;
  54. @property UIButton *aeZ5gGdoShW;
  55. @property UIApplication *aJjdVC;
  56. @property UIImage *aRnpjyN;
  57. @property UIControl *atOSVfyPJ;
  58. @property UIScreen *aSAiXoFd;
  59. @property UITableView *aNKwdCcUk;
  60. @property UIControl *ahyKOnvsjbz;
  61. @property UIMenuItem *aMeZV208OYy;
  62. @property UITableView *amJNkGA;
  63. @property UIViewController *apIB9LEYu;
  64. @end
  65. @interface MLMSegmentHead : UIView
  66. /**
  67. * 初始化显示的下标。默认显示0
  68. */
  69. @property (nonatomic, assign) NSInteger showIndex;
  70. /**
  71. * 导航条的背景颜色
  72. */
  73. @property (nonatomic, strong) UIColor *headColor;
  74. /**
  75. * 非均分样式下按钮宽度 = 计算 + singleW_Add
  76. */
  77. @property (nonatomic, assign) CGFloat singleW_Add;
  78. /**
  79. * 设置完成后更改self的宽度 = titlesScroll.contentSize.width
  80. */
  81. @property (nonatomic, assign) BOOL equalSize;
  82. /*------------自定义导航栏可不设置------------*/
  83. /**
  84. * 选择状态下的颜色,完全自定义样式下可不设置
  85. */
  86. @property (nonatomic, strong) UIColor *selectColor;
  87. /**
  88. * 未选中状态下的颜色,完全自定义样式下可不设置
  89. */
  90. @property (nonatomic, strong) UIColor *deSelectColor;
  91. /**
  92. * 字体的大小,完全自定义样式下可不设置
  93. */
  94. @property (nonatomic, assign) CGFloat fontSize;
  95. /**
  96. * 选中状态的缩放比例,SegmentHeadStyleSlide风格下此属性无用,设置缩放比例滑动过程中会有相应动画
  97. */
  98. @property (nonatomic, assign) CGFloat fontScale;
  99. /**
  100. * 是否有背景图片
  101. */
  102. @property (nonatomic, assign) BOOL hadBackImg;
  103. ///背景图
  104. @property (nonatomic, strong) NSArray *backImages;
  105. /*------------添加更多按钮样式------------*/
  106. /**
  107. * 添加更多样式
  108. */
  109. @property (nonatomic, strong) UIView *moreButton;
  110. /**
  111. * 更多按钮宽度
  112. */
  113. @property (nonatomic, assign) CGFloat moreButton_width;
  114. /*------------下划线风格------------*/
  115. /**
  116. * 下划线的颜色
  117. */
  118. @property (nonatomic, strong) UIColor *lineColor;
  119. /**
  120. * 下划线高度
  121. */
  122. @property (nonatomic, assign) CGFloat lineHeight;
  123. /**
  124. * 下划线相对于正常状态下的百分比,默认为1
  125. */
  126. @property (nonatomic, assign) CGFloat lineScale;
  127. /*------------箭头风格------------*/
  128. /**
  129. * 箭头的颜色
  130. */
  131. @property (nonatomic, strong) UIColor *arrowColor;
  132. /*------------滑块风格------------*/
  133. /**
  134. * 滑块的颜色
  135. */
  136. @property (nonatomic, strong) UIColor *slideColor;
  137. /**
  138. * 滑块的高度
  139. */
  140. @property (nonatomic, assign) CGFloat slideHeight;
  141. /**
  142. * 滑块的圆角大小
  143. */
  144. @property (nonatomic, assign) CGFloat slideCorner;
  145. /**
  146. * 滑块相对于正常状态下的百分比,默认为1
  147. */
  148. @property (nonatomic, assign) CGFloat slideScale;
  149. /**
  150. * 顶部导航栏下方的边线
  151. */
  152. @property (nonatomic, assign) CGFloat bottomLineHeight;
  153. @property (nonatomic, strong) UIColor *bottomLineColor;
  154. /**
  155. * 设置当前屏幕最多显示的按钮数,只有在默认布局样式 - MLMSegmentLayoutDefault 下使用
  156. */
  157. @property (nonatomic, assign) CGFloat maxTitles;
  158. /**
  159. * 代理
  160. */
  161. @property (nonatomic, weak) id<MLMSegmentHeadDelegate> delegate;
  162. /**
  163. * block
  164. */
  165. @property (nonatomic, copy) void(^selectedIndex)(NSInteger);
  166. /**
  167. * init method
  168. *
  169. * @param frame frame
  170. * @param titles titles array
  171. *
  172. * @return SegmentHeadView
  173. */
  174. - (instancetype)initWithFrame:(CGRect)frame
  175. titles:(NSArray *)titles;
  176. /**
  177. * init method
  178. *
  179. * @param frame frame
  180. * @param titles titles array
  181. * @param style SegmentHeadStyle
  182. *
  183. * @return SegmentHeadView
  184. */
  185. - (instancetype)initWithFrame:(CGRect)frame
  186. titles:(NSArray *)titles
  187. headStyle:(MLMSegmentHeadStyle)style;
  188. /**
  189. * init method
  190. *
  191. * @param frame frame
  192. * @param titles titles array
  193. * @param style SegmentHeadStyle
  194. * @param layout MLMSegmentLayoutStyle
  195. *
  196. * @return SegmentHeadView
  197. */
  198. - (instancetype)initWithFrame:(CGRect)frame
  199. titles:(NSArray *)titles
  200. headStyle:(MLMSegmentHeadStyle)style
  201. layoutStyle:(MLMSegmentLayoutStyle)layout;
  202. /**
  203. * set currentIndex
  204. *
  205. * @param index , set currendIndex
  206. */
  207. - (void)setSelectIndex:(NSInteger)index;
  208. /**
  209. * animation by scale
  210. *
  211. * @param scale scale
  212. */
  213. - (void)changePointScale:(CGFloat)scale;
  214. /**
  215. * 在SegmentHeadStyleLine样式下,返回下划线view,可以根据自己的需求进行进一步定制,如自定义UIImageView添加
  216. *
  217. * @return SegmentHeadStyleLine样式下,下划线view
  218. */
  219. - (UIView *)getScrollLineView;
  220. /**
  221. * 返回导航栏下方的下划线,可根据需求进行定制,如绘制虚线,添加UIImageView等
  222. *
  223. * @return 返回导航栏下方的下划线
  224. */
  225. - (UIView *)getBottomLineView;
  226. /**
  227. * get sumWidth
  228. */
  229. - (CGFloat)getSumWidth;
  230. /**
  231. * 创建之后,初始化
  232. */
  233. - (void)defaultAndCreateView;
  234. /**
  235. * *重要*:与之关联的scroll动画结束调用
  236. */
  237. - (void)animationEnd;
  238. /**
  239. 更改titles
  240. @param titles title的数组
  241. */
  242. - (void)changeTitle:(NSArray *)titles;
  243. /**
  244. 下划线的view,用于自定义,如添加图片
  245. @return 下划线的view
  246. */
  247. - (UIView *)getLineView;
  248. - (UIScrollView *)titlesScroll;
  249. - (NSArray *)buttons;
  250. - (void)changeIndex:(NSInteger)index completion:(BOOL)completion;
  251. - (void)changeIndex:(NSInteger)index completion:(BOOL)completion animate:(BOOL)animate ;
  252. @property UIImageView *aF6Y9meRIB;
  253. @property UIInputView *aogdn;
  254. @property UIButton *aeZ5gGdoShW;
  255. @property UIApplication *aJjdVC;
  256. @property UIImage *aRnpjyN;
  257. @property UIControl *atOSVfyPJ;
  258. @property UIScreen *aSAiXoFd;
  259. @property UITableView *aNKwdCcUk;
  260. @property UIControl *ahyKOnvsjbz;
  261. @property UIMenuItem *aMeZV208OYy;
  262. @property UITableView *amJNkGA;
  263. @property UIViewController *apIB9LEYu;
  264. @end