QtyCountV.h 446 B

12345678910111213141516171819202122
  1. //
  2. // QtyCountV.h
  3. // westkissMob
  4. //
  5. // Created by 王猛 on 2022/10/10.
  6. //
  7. #import "TT_BaseV.h"
  8. NS_ASSUME_NONNULL_BEGIN
  9. @interface QtyCountV : TT_BaseV
  10. @property(nonatomic, strong) UIButton *cutBtn;
  11. @property(nonatomic, strong) UILabel *numLab;
  12. @property(nonatomic, strong) UIButton *addBtn;
  13. @property (nonatomic, assign) NSInteger goodsmaxNum;
  14. -(void)xxx_changeBtnIsEnable:(BOOL)isEnabled num:(NSInteger)num;
  15. @end
  16. NS_ASSUME_NONNULL_END