Files
peko-ios/YuMi/Modules/YMRoom/View/AnimationView/LuckyGiftWinningBannerView.h
2024-09-12 14:01:12 +08:00

27 lines
498 B
Objective-C

//
// LuckyGiftWinningBannerView.h
// YuMi
//
// Created by P on 2024/9/10.
//
#import <UIKit/UIKit.h>
@class AttachmentModel;
NS_ASSUME_NONNULL_BEGIN
@interface LuckyGiftWinningBannerView : UIView
@property (nonatomic, copy) void(^didTapBanner)(NSInteger roomID);
+ (void)display:(UIView *)superView
inRoomUid:(NSInteger)roomUid
with:(AttachmentModel *)attachment
complete:(void(^)(void))complete
exitCurrentRoom:(void(^)(void))exit;
@end
NS_ASSUME_NONNULL_END