TDSButton.h 281 B

123456789101112131415161718192021
  1. //
  2. // TDSButton.h
  3. // TapCommonSDK
  4. //
  5. // Created by Bottle K on 2021/4/27.
  6. //
  7. #import <UIKit/UIKit.h>
  8. NS_ASSUME_NONNULL_BEGIN
  9. @interface TDSButton : UIButton
  10. @property (nonatomic, assign) NSInteger mode;
  11. - (void)confirmMode;
  12. - (void)cancelMode;
  13. @end
  14. NS_ASSUME_NONNULL_END