27 lines
498 B
Objective-C
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
|