1234567891011121314151617181920 |
- //
- // KBGoodsRecommendTableViewCell.h
- // YouHuiProject
- //
- // Created by jcymac on 2018/9/4.
- // Copyright © 2018年 kuxuan. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "KBCommunityModel.h"
- @protocol KBGoodsRecommendTableViewDelegate<NSObject>
- -(void)jumpByCommunityModel:(KBCommunityModel *)model;
- @end
- @interface KBGoodsRecommendTableViewCell : UITableViewCell
- + (instancetype)cellWithTableView:(UITableView *)tableView;
- @property (nonatomic, strong) KBCommunityModel *model;
- @property (nonatomic, strong) id<KBGoodsRecommendTableViewDelegate> delegate;
- @end
|