12345678910111213141516171819 |
- //
- // FSSuperListCell.h
- // FSScrollViewNestTableViewDemo
- //
- // Created by liuxueli on 2018/12/11.
- // Copyright © 2018 fengshun. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface FSSuperListCell : UITableViewCell<UICollectionViewDelegateFlowLayout,UICollectionViewDataSource,UICollectionViewDelegate>
- @property(nonatomic,strong)NSArray *array;
- @property (nonatomic, strong)UICollectionView *collections;
- @end
- NS_ASSUME_NONNULL_END
|