30 lines
605 B
Objective-C
30 lines
605 B
Objective-C
//
|
|
// MewRoomReceiveGiftLandscapeView.h
|
|
// xplan-ios
|
|
//
|
|
// Created by duoban on 2024/2/19.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
#import "XPRoomGiftBroadCastModel.h"
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
@class MewRoomReceiveGiftLandscapeView;
|
|
|
|
@protocol MewRoomReceiveGiftLandscapeViewDelegate <NSObject>
|
|
|
|
|
|
- (void)clickEnterRoom:(NSString *)roomUid roomTitle:(NSString *)title;
|
|
|
|
@end
|
|
|
|
|
|
@interface MewRoomReceiveGiftLandscapeView : UIView
|
|
///
|
|
@property (nonatomic,strong) XPRoomGiftBroadCastModel *model;
|
|
|
|
///代理
|
|
@property (nonatomic,weak) id<MewRoomReceiveGiftLandscapeViewDelegate> delegate;
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|