24 lines
401 B
Objective-C
24 lines
401 B
Objective-C
//
|
|
// QXGiftDisplayManager.h
|
|
// QXLive
|
|
//
|
|
// Created by 启星 on 2025/10/20.
|
|
//
|
|
#import <Foundation/Foundation.h>
|
|
#import "QXGiftScrollView.h"
|
|
|
|
@interface QXGiftDisplayManager : NSObject
|
|
|
|
+ (instancetype)sharedManager;
|
|
|
|
// 接收礼物
|
|
- (void)receiveGift:(QXRoomChatListModel *)gift;
|
|
|
|
// 设置飘屏容器视图
|
|
- (void)setupDisplayViewInContainer:(UIView *)container;
|
|
|
|
- (void)clearAll;
|
|
@end
|
|
|
|
|