Nessuna descrizione

FKRecommendBaseCell.h 616B

123456789101112131415161718192021222324252627
  1. //
  2. // FKRecommendBaseCell.h
  3. // FirstLink
  4. //
  5. // Created by ascii on 16/7/6.
  6. // Copyright © 2016年 FirstLink. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @protocol FKRecoCustomCellDelegate <NSObject>
  10. @optional
  11. - (void)recommendClickCell:(id)cell atIndexPath:(NSIndexPath *)indexPath offset:(NSInteger)offset;
  12. - (void)recommendClickHeaderButton:(UIButton *)button atIndexPath:(NSIndexPath *)indexPath;
  13. @end
  14. @interface FKRecommendBaseCell : UITableViewCell
  15. @property (nonatomic, strong) NSIndexPath *indexPath;
  16. @property (nonatomic, weak ) id<FKRecoCustomCellDelegate> delegate;
  17. @end