// // SceneLibraryViewController.h // Lighting // // Created by 曹云霄 on 16/5/4. // Copyright © 2016年 上海勾芒科技有限公司. All rights reserved. // #import "BaseViewController.h" #import "screeningButton.h" @interface SceneLibraryViewController : BaseViewController /** * SeceneLibraryCollectionView */ @property (weak, nonatomic) IBOutlet UICollectionView *seceneLibararyCollectionView; /** * SeceneLibraryLayout */ @property (weak, nonatomic) IBOutlet UICollectionViewFlowLayout *seceneLibraryCollectionLayout; /** * 显示风格(为一横排多少张,4、6、9) */ @property (weak, nonatomic) IBOutlet UIButton *accordingStyle; /** * 背景View */ @property (weak, nonatomic) IBOutlet UIView *backView; /** * 风格按钮 */ @property (strong, nonatomic) screeningButton *StyleButton; /** * 房型按钮 */ @property (strong, nonatomic) screeningButton *SpaceButton; /** * 搜索模型 */ @property (nonatomic,strong) SceneCondition *conditionModel; @end