dkahgld

ZBCollectionListCell.h 607B

1234567891011121314151617181920212223
  1. //
  2. // ZBCollectionListCell.h
  3. // ZBProject
  4. //
  5. // Created by 学丽 on 2019/5/6.
  6. // Copyright © 2019 ZB. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "ZBGoodModel.h"
  10. NS_ASSUME_NONNULL_BEGIN
  11. @interface ZBCollectionListCell : UITableViewCell
  12. @property(nonatomic,strong)UIImageView *goodImgV;
  13. @property(nonatomic,strong)UILabel *titleLabel;
  14. @property(nonatomic,strong)UIButton *deleteBtn;
  15. @property(nonatomic,strong)UILabel *priceLabel;
  16. @property(nonatomic,strong)ZBGoodModel *model;
  17. @property (nonatomic, copy) void (^deleteGoodModel)(ZBCollectionListCell *cells);
  18. @end
  19. NS_ASSUME_NONNULL_END