Files
midi_ios/QXLive/HomePage(声播)/View/房间/排行榜/QXRoomRankView.h

20 lines
370 B
C
Raw Normal View History

2025-08-14 10:07:49 +08:00
//
// QXRoomRankView.h
// QXLive
//
// Created by 启星 on 2025/6/9.
//
#import <UIKit/UIKit.h>
2025-09-11 18:25:41 +08:00
#import "QXRoomSeatDelegate.h"
2025-08-14 10:07:49 +08:00
NS_ASSUME_NONNULL_BEGIN
@interface QXRoomRankView : UIView
@property (nonatomic,strong)NSString*roomId;
2025-09-11 18:25:41 +08:00
@property (nonatomic,weak)id<QXRoomSeatDelegate>delegate;
2025-08-14 10:07:49 +08:00
-(void)showInView:(UIView *)view;
2025-09-11 18:25:41 +08:00
-(void)hide;
2025-08-14 10:07:49 +08:00
@end
NS_ASSUME_NONNULL_END