| 1234567891011121314151617181920212223 |
- //
- // MORankBottomButton.h
- // MiMoLive
- //
- // Created by MiMo on 2025/9/10.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface MORankBottomButton : UIControl
- @property (nonatomic, strong) UIImageView *iconView;
- /// 配置方法
- - (void)configureWithCount:(NSString *)count
- desc:(NSString *)desc
- isGradient:(BOOL)isGradient;
- @end
- NS_ASSUME_NONNULL_END
|