MORankBottomButton.h 412 B

1234567891011121314151617181920212223
  1. //
  2. // MORankBottomButton.h
  3. // MiMoLive
  4. //
  5. // Created by MiMo on 2025/9/10.
  6. //
  7. #import <UIKit/UIKit.h>
  8. NS_ASSUME_NONNULL_BEGIN
  9. @interface MORankBottomButton : UIControl
  10. @property (nonatomic, strong) UIImageView *iconView;
  11. /// 配置方法
  12. - (void)configureWithCount:(NSString *)count
  13. desc:(NSString *)desc
  14. isGradient:(BOOL)isGradient;
  15. @end
  16. NS_ASSUME_NONNULL_END