Ei kuvausta

FKExploreTableViewCell.h 426B

1234567891011121314151617181920212223
  1. //
  2. // FKExploreTableCell.h
  3. // FirstLink
  4. //
  5. // Created by ascii on 16/2/16.
  6. // Copyright © 2016年 FirstLink. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "FKRecommendBaseCell.h"
  10. @class FKExploreTopicListItem;
  11. @interface FKExploreTableViewCell : FKRecommendBaseCell
  12. @property (nonatomic, strong) UICollectionView *collectionView;
  13. - (void)configCell:(FKExploreTopicListItem*)item;
  14. + (CGFloat)height;
  15. @end