1234567891011121314151617181920212223 |
- //
- // YOUPAILZLiveBarrageTool.h
- // VQU
- //
- // Created by CY on 2021/8/30.
- // Copyright © 2021 MS. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "YOUPAILZLiveBarrageAttachment.h"
- #import "YOUPAILZLiveVipBarrageAttachment.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface YOUPAILZLiveBarrageTool : NSObject
- /// 处理VIP进场弹幕消息
- + (UIView *)youpaifhandleVipBarrageAttachment:(YOUPAILZLiveVipBarrageAttachment *)barrageAttachment;
- /// 处理榜单进场弹幕消息
- + (UIView *)youpaifhandleBarrageAttachment:(YOUPAILZLiveBarrageAttachment *)barrageAttachment;
- @end
- NS_ASSUME_NONNULL_END
|