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

#import <UIKit/UIKit.h>
zhu's avatar
zhu committed
10 11 12 13 14 15 16
@protocol FootViewBtnClickdelegate <NSObject>
@required

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

@end
zhu's avatar
zhu committed
17 18

@interface FootSubView : UIView
zhu's avatar
zhu committed
19 20 21 22
@property (nonatomic,assign) id<FootViewBtnClickdelegate> delegate;
@property (nonatomic,strong)UIScrollView *scrollView;
@property (nonatomic,strong)NSMutableArray *dataArray;

zhu's avatar
zhu committed
23 24

@end