Files
featherVoice/QXLive/Mine(音域)/View/歌单列表/QXMineAddSongGiftView.h
2025-11-21 16:17:05 +08:00

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