口袋优选

KBGoodsRecommendTableViewCell.h 586B

1234567891011121314151617181920
  1. //
  2. // KBGoodsRecommendTableViewCell.h
  3. // YouHuiProject
  4. //
  5. // Created by jcymac on 2018/9/4.
  6. // Copyright © 2018年 kuxuan. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "KBCommunityModel.h"
  10. @protocol KBGoodsRecommendTableViewDelegate<NSObject>
  11. -(void)jumpByCommunityModel:(KBCommunityModel *)model;
  12. @end
  13. @interface KBGoodsRecommendTableViewCell : UITableViewCell
  14. + (instancetype)cellWithTableView:(UITableView *)tableView;
  15. @property (nonatomic, strong) KBCommunityModel *model;
  16. @property (nonatomic, strong) id<KBGoodsRecommendTableViewDelegate> delegate;
  17. @end