123456789101112131415161718192021222324 |
- //
- // YOUPAILZBadgeButton.h
- // TIANYAN
- //
- // Created by CY on 2021/5/15.
- // Copyright © 2021 leo. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface YOUPAILZBadgeButton : UIButton
- @property (nonatomic, assign) NSInteger youpaipbadgeValue;
- @property (nonatomic, copy) UIColor *youpaipbadgeBgColor;
- @property (nonatomic, copy) UIColor *youpaipbadgeTextColor;
- @property (nonatomic, copy) UIFont *youpaipbadgeFont;
- @property (nonatomic, assign) CGSize youpaipbadgeSize;
- @end
- NS_ASSUME_NONNULL_END
|