// // FKRecommendBaseCell.h // FirstLink // // Created by ascii on 16/7/6. // Copyright © 2016年 FirstLink. All rights reserved. // #import @protocol FKRecoCustomCellDelegate @optional - (void)recommendClickCell:(id)cell atIndexPath:(NSIndexPath *)indexPath offset:(NSInteger)offset; - (void)recommendClickHeaderButton:(UIButton *)button atIndexPath:(NSIndexPath *)indexPath; @end @interface FKRecommendBaseCell : UITableViewCell @property (nonatomic, strong) NSIndexPath *indexPath; @property (nonatomic, weak ) id delegate; @end