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