Files
featherVoice/QXLive/Room(房间)/View/排行榜/QXRoomRankView.h

20 lines
370 B
C
Raw Normal View History

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