// // Toolview.h // Lighting // // Created by 曹云霄 on 16/4/27. // Copyright © 2016年 上海勾芒科技有限公司. All rights reserved. // #import @protocol TabbarButtonClickdelegate @required /** * 点击按钮回调 */ - (void)buttonClickAction:(NSInteger)Buttontag withButton:(UIButton *)button; /** * 点击二维码扫描按钮 */ - (void)qrcodeButtonClick; @end @interface Toolview : UIView @property (nonatomic,assign) id delegate; /** * 下划线 */ @property (nonatomic,strong) UIView *underlineView; /** * 搜索框 */ @property (nonatomic,strong) UITextField *inputField; /** 按钮 */ @property (nonatomic,strong) NSMutableArray *buttonArray; /** 切换tabbar 指示线view @param selectedIndex tabbar 选中 */ - (void)switchLineViewOrigin:(NSInteger)selectedIndex; @end