Toolview.h 700 Bytes
//
//  Toolview.h
//  Lighting
//
//  Created by 曹云霄 on 16/4/27.
//  Copyright © 2016年 上海勾芒科技有限公司. All rights reserved.
//

#import <UIKit/UIKit.h>

@protocol TabbarButtonClickdelegate <NSObject,UITextFieldDelegate>

@required

/**
 *  点击按钮回调
 */
- (void)ButtonClickAction:(NSInteger)Buttontag withButton:(UIButton *)button;

/**
 *  点击二维码扫描按钮
 */
- (void)QrcodeButtonClick;

@end


@interface Toolview : UIView

@property (nonatomic,assign) id<TabbarButtonClickdelegate> delegate;

/**
 *  下划线
 */
@property (nonatomic,strong) UIView *underlineView;


/**
 *  搜索框
 */
@property (nonatomic,strong) UITextField *inputField;

@end