RightSubView.h 574 Bytes
Newer Older
zhu's avatar
zhu committed
1 2 3 4 5 6 7 8 9
//
//  RightSubView.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
@protocol RightViewBtnClickdelegate <NSObject>
@required
zhu's avatar
zhu committed
12

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

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