// // SeceneLibraryView.h // Lighting // // Created by mac on 16/5/11. // Copyright © 2016年 上海勾芒科技有限公司. All rights reserved. // #import #import "SeceneCollectionPictureCell.h" @protocol AddSecenePicturedelegate @required //回调 - (void)addSeceneImage:(UIImage *)image; @end @interface SeceneLibraryView : BaseViewController @property (nonatomic,assign) id delegate; @property (nonatomic,strong) UIView *subView; @property (nonatomic,strong) UIView *headerView; @property (nonatomic,strong) UITableView *seceneTableView; @property (nonatomic,strong) UITableView *pictureTableView; @property (nonatomic,strong) UIButton *kongJianBtn; @property (nonatomic,strong) UIButton *fengGeBtn; @property (nonatomic,strong) UIButton *leiXingBtn; @property (nonatomic,strong) NSMutableArray *arrayData; @property (nonatomic,strong) NSMutableArray *array1; @property (nonatomic,strong) NSMutableArray *array2; @property (nonatomic,strong) NSMutableArray *array3; @property (nonatomic,strong) UICollectionView *collectionView; @end