1234567891011121314151617181920212223 |
- //
- // FKExploreTableCell.h
- // FirstLink
- //
- // Created by ascii on 16/2/16.
- // Copyright © 2016年 FirstLink. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "FKRecommendBaseCell.h"
- @class FKExploreTopicListItem;
- @interface FKExploreTableViewCell : FKRecommendBaseCell
- @property (nonatomic, strong) UICollectionView *collectionView;
- - (void)configCell:(FKExploreTopicListItem*)item;
- + (CGFloat)height;
- @end
|