| 1234567891011121314151617181920212223 |
- //
- // CustomerCodeShareViewController.h
- // IBOSSmini
- //
- // Created by guan hong hou on 2018/7/16.
- // Copyright © 2018年 elongtian. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "InvoiceStyleDelegate.h"
- @interface CustomerCodeShareVC : BaseViewController<UICollectionViewDelegate,UICollectionViewDataSource,InvoiceStyleDelegate>
- @property (nonatomic , strong) UICollectionView *collectionView;
- @property(nonatomic,strong) NSMutableArray *photoList;
- @property(nonatomic,strong) NSMutableArray *shareList;
- @property (nonatomic, strong) NSMutableDictionary *cellDic;
- @property(nonatomic,strong)UIButton *btnCheckAll;
- @property(nonatomic,assign)Boolean isCheckedAll;
- @property(nonatomic,strong)UIView *bottomView;
- @property(nonatomic,strong) UITapGestureRecognizer *gestureRecognizer;
- @property(nonatomic,assign) Boolean clickMode;
- @property (nonatomic,strong) ASIDownManager *downManager;
- @property(nonatomic,strong) NSString *orderId;
- @end
|