LeftSubView.h 477 Bytes
Newer Older
zhu's avatar
zhu committed
1 2 3 4 5 6 7 8 9
//
//  LeftSubView.h
//  Lighting
//
//  Created by mac on 16/5/10.
//  Copyright © 2016年 上海勾芒科技有限公司. All rights reserved.
//

#import <UIKit/UIKit.h>
zhu's avatar
zhu committed
10
@protocol LeftViewBtnClickdelegate <NSObject>
zhu's avatar
zhu committed
11 12 13 14 15 16 17 18 19

@required

//回调
- (void)buttonClick:(NSInteger)btnTag withButton:(UIButton *)button;

@end

@interface LeftSubView : UIView
zhu's avatar
zhu committed
20
@property (nonatomic,assign) id<LeftViewBtnClickdelegate> delegate;
zhu's avatar
zhu committed
21 22
@property (nonatomic,strong)NSMutableArray *dataArray;
@end