新UI马甲包

FSBaseTopTableViewCell.h 595B

12345678910111213141516171819202122
  1. //
  2. // FSBaseTopTableViewCell.h
  3. // FSScrollViewNestTableViewDemo
  4. //
  5. // Created by huim on 2017/5/23.
  6. // Copyright © 2017年 fengshun. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @protocol YHMorePicCollectionCellDelegate <NSObject>
  10. - (void)YHMorePicCollectionCellDidSelectedItem:(NSInteger)index;
  11. @end
  12. @interface FSBaseTopTableViewCell : UITableViewCell
  13. @property(nonatomic,strong)UIImageView *imgv ;
  14. @property(nonatomic,strong)UICollectionView *collectionView;
  15. - (void)setModelDatas:(NSArray *)dataArr;
  16. @property (nonatomic, weak) id <YHMorePicCollectionCellDelegate> delegate;
  17. @end