YOUPAILZBadgeButton.h 537 B

123456789101112131415161718192021222324
  1. //
  2. // YOUPAILZBadgeButton.h
  3. // TIANYAN
  4. //
  5. // Created by CY on 2021/5/15.
  6. // Copyright © 2021 leo. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface YOUPAILZBadgeButton : UIButton
  11. @property (nonatomic, assign) NSInteger youpaipbadgeValue;
  12. @property (nonatomic, copy) UIColor *youpaipbadgeBgColor;
  13. @property (nonatomic, copy) UIColor *youpaipbadgeTextColor;
  14. @property (nonatomic, copy) UIFont *youpaipbadgeFont;
  15. @property (nonatomic, assign) CGSize youpaipbadgeSize;
  16. @end
  17. NS_ASSUME_NONNULL_END