1234567891011121314151617181920212223 |
- //
- // ZBCollectionListCell.h
- // ZBProject
- //
- // Created by 学丽 on 2019/5/6.
- // Copyright © 2019 ZB. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "ZBGoodModel.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface ZBCollectionListCell : UITableViewCell
- @property(nonatomic,strong)UIImageView *goodImgV;
- @property(nonatomic,strong)UILabel *titleLabel;
- @property(nonatomic,strong)UIButton *deleteBtn;
- @property(nonatomic,strong)UILabel *priceLabel;
- @property(nonatomic,strong)ZBGoodModel *model;
- @property (nonatomic, copy) void (^deleteGoodModel)(ZBCollectionListCell *cells);
- @end
- NS_ASSUME_NONNULL_END
|