// // ZCNavMenuView.h // LiveChat // // Created by 张灿 on 2018/9/7. // Copyright © 2018年 caicai. All rights reserved. // #import @protocol ZCNavMenuViewDelegate - (void)youpaifnavBtnClick:(NSInteger)index; @end @interface ZCNavMenuView : UIView @property (nonatomic,weak)id delegate; @property (nonatomic,strong) UIView* selectView; - (instancetype)initWithFrame:(CGRect)frame TitleArr:(NSArray *)arr normalFont:(UIFont*)font normalColor:(UIColor*)normalColor selectFont:(UIFont*)selectFont selectColor:(UIColor*)selectcolor selectLineColor:(UIColor*)selectLineColor currentIndex:(NSInteger)currentIndex isBackground:(BOOL)isBackground; - (instancetype)initWithFrame:(CGRect)frame TitleArr:(NSArray *)arr normalFont:(UIFont*)font normalColor:(UIColor*)normalColor selectFont:(UIFont*)selectFont selectColor:(UIColor*)selectcolor selectLineColor:(UIColor*)selectLineColor currentIndex:(NSInteger)currentIndex; - (void)changeCurrentSelectButton:(NSInteger)index; /* bgColor */ @property (strong, nonatomic) UIColor *bgColor; @end