1234567891011121314151617181920212223 |
- //
- // FKProRecommendListCell.h
- // FirstLink
- //
- // Created by jack on 16/8/13.
- // Copyright © 2016年 FirstLink. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- @class FKProRecommendListCell;
- @protocol FKProRecommendListCellDelegate <NSObject>
- - (void)listCell:(FKProRecommendListCell *)cell selectAtIndex:(NSIndexPath *)indexpath;
- @end
- @interface FKProRecommendListCell : UITableViewCell
- @property (nonatomic, weak) id <FKProRecommendListCellDelegate>delegate;
- + (CGFloat)cellHeight;
- @end
|