No Description

FKProRecommendListCell.h 500B

1234567891011121314151617181920212223
  1. //
  2. // FKProRecommendListCell.h
  3. // FirstLink
  4. //
  5. // Created by jack on 16/8/13.
  6. // Copyright © 2016年 FirstLink. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @class FKProRecommendListCell;
  10. @protocol FKProRecommendListCellDelegate <NSObject>
  11. - (void)listCell:(FKProRecommendListCell *)cell selectAtIndex:(NSIndexPath *)indexpath;
  12. @end
  13. @interface FKProRecommendListCell : UITableViewCell
  14. @property (nonatomic, weak) id <FKProRecommendListCellDelegate>delegate;
  15. + (CGFloat)cellHeight;
  16. @end