暂无描述

FKExploreCollectionCell.h 688B

1234567891011121314151617181920212223242526272829
  1. //
  2. // FKExploreCollectionCell.h
  3. // FirstLink
  4. //
  5. // Created by ascii on 16/2/16.
  6. // Copyright © 2016年 FirstLink. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. @class FKExploreViewModel;
  10. @protocol FKExploreCellDelegate <NSObject>
  11. @optional
  12. - (void)exploreCellClickItem:(NSInteger)index;
  13. - (void)refreshControl:(FKRefreshControl *)refreshControl didEngageRefreshDirection:(RefreshDirection)direction;
  14. @end
  15. @interface FKExploreCollectionCell : UICollectionViewCell
  16. @property (nonatomic, strong) UITableView *tableView;
  17. @property (nonatomic, weak) FKExploreViewModel *viewModel;
  18. @property (nonatomic, weak ) id<FKExploreCellDelegate> delegate;
  19. @end