22 lines
438 B
C
22 lines
438 B
C
|
|
//
|
||
|
|
// QXCPEffectView.h
|
||
|
|
// QXLive
|
||
|
|
//
|
||
|
|
// Created by 启星 on 2025/11/22.
|
||
|
|
//
|
||
|
|
|
||
|
|
#import <UIKit/UIKit.h>
|
||
|
|
#import "UIView+VAP.h"
|
||
|
|
NS_ASSUME_NONNULL_BEGIN
|
||
|
|
|
||
|
|
@interface QXCPEffectView : UIView
|
||
|
|
@property (nonatomic,strong) VAPView *playerMp4View;
|
||
|
|
-(void)displayCpEffectUrl:(QXRoomChatListModel*)model;
|
||
|
|
@property (nonatomic, strong) dispatch_queue_t queue;
|
||
|
|
- (void)destroyEffectView;
|
||
|
|
-(void)stopPlay;
|
||
|
|
-(void)startPlay;
|
||
|
|
@end
|
||
|
|
|
||
|
|
NS_ASSUME_NONNULL_END
|