1 2 3 4 5 6 7 8 9
| /** frame&views 必填 其他非必填 */ - (instancetype)initWithFrame:(CGRect)frame views:(NSArray <UIView *> *)views //要显示的views titles:(NSArray <NSString *>*)titles //要显示的titles titleFont:(UIFont *)font //默认15 titleColor:(UIColor *)titleColor //默认黑色 titleSelectedColor:(UIColor *)selectedColor //默认绿色 titlesIsAverage:(BOOL)isAve //是否根据frameW平均显示titles,如果是:frameW不够显示的时候回用默认空白宽度 showAction:(void(^)(NSInteger index))showAction; //显示回调
|