35 lines
776 B
Objective-C
35 lines
776 B
Objective-C
//
|
|
// QXMineAddSongView.h
|
|
// QXLive
|
|
//
|
|
// Created by 启星 on 2025/11/13.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
#import "QXUserSongListModel.h"
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
@protocol QXMineAddSongViewDelegate <NSObject>
|
|
|
|
@optional
|
|
|
|
-(void)qx_mineAddSongViewCommitWithSongName:(NSString*)songName giftModel:(QXGiftModel*)giftModel;
|
|
|
|
-(void)qx_mineEditSongViewCommitWithSongModel:(QXUserSongListModel*)songModel;
|
|
|
|
-(void)qx_mineAddSongViewDidSeleteGift;
|
|
|
|
-(void)qx_mineAddSongViewDidRemove;
|
|
|
|
@end
|
|
@interface QXMineAddSongView : UIView
|
|
|
|
@property (nonatomic,strong)QXGiftModel *giftModel;
|
|
@property (nonatomic,strong)QXUserSongListModel *songModel;
|
|
@property (nonatomic,weak)id<QXMineAddSongViewDelegate>delegate;
|
|
-(void)showInView:(UIView *)view;
|
|
|
|
-(void)hide;
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|