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

#import "BaseViewController.h"
#import "ShoppingCell.h"
11
#import "CustomShopingSeclectButton.h"
12 13 14 15 16 17
@protocol Shoppingdelegate <NSObject>

@required
- (void)restShoppingBtnImage;

@end
zhu's avatar
zhu committed
18 19

@interface ShoppingView : BaseViewController<UIGestureRecognizerDelegate,UITableViewDelegate,UITableViewDataSource>
20
@property (nonatomic,assign) id<Shoppingdelegate> delegate;
zhu's avatar
zhu committed
21 22 23 24 25 26 27
@property (nonatomic,strong) UIView *subView;
@property (nonatomic,strong) UIView *headerView;
@property (nonatomic,strong) UIView *toolView;
@property (nonatomic,strong) UIView *footView;
@property (nonatomic,strong) NSMutableArray *nameDataArray;
@property (nonatomic,strong) NSMutableArray *productModelArray;
@property (nonatomic,strong) NSMutableArray *selectTagArray;
28
@property (nonatomic,strong) NSMutableArray *AddArray;
zhu's avatar
zhu committed
29 30
@property (nonatomic,strong) UITableView *shoppingTableView;
@property (nonatomic,assign) BOOL isAllSelected;
31 32
@property (nonatomic,strong) UIButton*allSelectBtn;
@property (nonatomic,strong) UIButton *confirmAddBtn;
zhu's avatar
zhu committed
33
@end