12345678910111213141516171819202122 |
- //
- // QtyCountV.h
- // westkissMob
- //
- // Created by 王猛 on 2022/10/10.
- //
- #import "TT_BaseV.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface QtyCountV : TT_BaseV
- @property(nonatomic, strong) UIButton *cutBtn;
- @property(nonatomic, strong) UILabel *numLab;
- @property(nonatomic, strong) UIButton *addBtn;
- @property (nonatomic, assign) NSInteger goodsmaxNum;
- -(void)xxx_changeBtnIsEnable:(BOOL)isEnabled num:(NSInteger)num;
- @end
- NS_ASSUME_NONNULL_END
|