// // screeningSecondView.h // Lighting // // Created by 曹云霄 on 16/5/8. // Copyright © 2016年 上海勾芒科技有限公司. All rights reserved. // #import <UIKit/UIKit.h> @interface screeningSecondView : UIView<UITableViewDelegate,UITableViewDataSource,UICollectionViewDelegate,UICollectionViewDataSource> /** * 筛选tableview */ @property (weak, nonatomic) IBOutlet UITableView *screeningTableview; /** * 筛选collectionView */ @property (weak, nonatomic) IBOutlet UICollectionView *screeningCollectionView; /** * 筛选layout */ @property (weak, nonatomic) IBOutlet UICollectionViewFlowLayout *screeningLayout; @end