12345678910111213141516171819202122 |
- //
- // FSBaseTopTableViewCell.h
- // FSScrollViewNestTableViewDemo
- //
- // Created by huim on 2017/5/23.
- // Copyright © 2017年 fengshun. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- @protocol YHMorePicCollectionCellDelegate <NSObject>
- - (void)YHMorePicCollectionCellDidSelectedItem:(NSInteger)index;
- @end
- @interface FSBaseTopTableViewCell : UITableViewCell
- @property(nonatomic,strong)UIImageView *imgv ;
- @property(nonatomic,strong)UICollectionView *collectionView;
- - (void)setModelDatas:(NSArray *)dataArr;
- @property (nonatomic, weak) id <YHMorePicCollectionCellDelegate> delegate;
- @end
|