Files
real-e-party-iOS/YuMi/Modules/YMRoom/Features/Boom/RoomBoomBannerAnimation.h
edwinQQQ a35a711be6 chore: Initial clean commit
- Removed YuMi/Library/ (138 MB, not tracked)
- Removed YuMi/Resources/ (23 MB, not tracked)
- Removed old version assets (566 files, not tracked)
- Excluded Pods/, xcuserdata/ and other build artifacts
- Clean repository optimized for company server deployment
2025-10-09 16:19:14 +08:00

31 lines
707 B
Objective-C

//
// RoomBoomBannerAnimation.h
// YuMi
//
// Created by P on 2024/9/27.
//
#import <UIKit/UIKit.h>
@class AttachmentModel;
NS_ASSUME_NONNULL_BEGIN
@interface RoomBoomBannerAnimation : UIView
/// 播放房间特效的方法,后续有机会重构,所有对象按此方法进行
/// - Parameters:
/// - superView: 加载特效的视图
/// - attachment: 构建视图内容的数据
/// - handleTapToRoom: 是否响应点击事件,点击后在内部处理逻辑
/// - complete: 播放完成回调
+ (void)display:(UIView *)superView
with:(AttachmentModel *)attachment
tapToRoom:(BOOL)handleTapToRoom
complete:(void(^)(void))complete;
@end
NS_ASSUME_NONNULL_END