// // SceneLibraryViewController.h // Lighting // // Created by 曹云霄 on 16/5/4. // Copyright © 2016年 上海勾芒科技有限公司. All rights reserved. // #import "BaseViewController.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; /** * 数据风格 */ @property (weak, nonatomic) IBOutlet UIButton *dataStyleButton; /** * 房型风格 */ @property (weak, nonatomic) IBOutlet UIButton *houseStyleButton; /** * 背景View */ @property (weak, nonatomic) IBOutlet UIView *backView; @end