1234567891011121314151617181920212223242526272829 |
- //
- // ZCNavMenuView.h
- // LiveChat
- //
- // Created by 张灿 on 2018/9/7.
- // Copyright © 2018年 caicai. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- @protocol ZCNavMenuViewDelegate <NSObject>
- - (void)youpaifnavBtnClick:(NSInteger)index;
- @end
- @interface ZCNavMenuView : UIView
- @property (nonatomic,weak)id <ZCNavMenuViewDelegate> 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
|