FootSubView.h 612 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
@protocol FootViewBtnClickdelegate <NSObject>
@required

//回调
- (void)buttonClick:(NSInteger)btnTag withButton:(UIButton *)button;
zhu's avatar
zhu committed
15
- (void)resetSuperBackGroundImage:(UIImage*)image;
zhu's avatar
zhu committed
16 17

@end
zhu's avatar
zhu committed
18

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

zhu's avatar
zhu committed
24 25

@end