123456789101112131415161718192021222324252627 |
- //
- // FKRecommendBaseCell.h
- // FirstLink
- //
- // Created by ascii on 16/7/6.
- // Copyright © 2016年 FirstLink. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- @protocol FKRecoCustomCellDelegate <NSObject>
- @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<FKRecoCustomCellDelegate> delegate;
- @end
|