26 lines
469 B
Objective-C
26 lines
469 B
Objective-C
//
|
|
// QXMineAddSongGiftView.h
|
|
// QXLive
|
|
//
|
|
// Created by 启星 on 2025/11/13.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
@protocol QXMineAddSongGiftViewDelegate <NSObject>
|
|
|
|
@optional
|
|
-(void)didSeletedGift:(QXGiftModel*)giftModel giftCount:(NSString*)giftCount;
|
|
|
|
@end
|
|
@interface QXMineAddSongGiftView : UIView
|
|
|
|
@property (nonatomic,weak)id<QXMineAddSongGiftViewDelegate>delegate;
|
|
-(void)showInView:(UIView *)view;
|
|
|
|
-(void)hide;
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|