| 1234567891011121314151617181920212223242526 |
- //
- // MORankListVC.h
- // MiMoLive
- //
- // Created by SuperC on 2023/11/30.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface MORankListVC : UIViewController
- /** 1 为直播间贡献榜 (不在这里显示) 2为总贡献榜 3 为收益榜 */
- @property (nonatomic, assign) NSInteger typeNum;
- /// 是否新人主播榜单
- @property (nonatomic, assign) BOOL isNewer;
- @property (nonatomic, strong) NSArray *countryDataArr;
- @property (nonatomic, copy) void (^headBtnBlock)(MOUserBase *model);
- @end
- NS_ASSUME_NONNULL_END
|