12345678910111213141516171819202122 |
- //
- // KBGoodDetailImageCell.h
- // YouHuiProject
- //
- // Created by 小花 on 2018/10/11.
- // Copyright © 2018年 kuxuan. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "KBDetailImgModel.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface KBGoodDetailImageCell : UITableViewCell
- @property (nonatomic, copy) NSString *imgUrl;
- @property (nonatomic, strong) KBDetailImgModel *model;
- + (instancetype)cellWithTableView:(UITableView *)tableView;
- @end
- NS_ASSUME_NONNULL_END
|