Files
featherVoice/QXLive/Room(房间)/View/签约房/QXSignCoinListView.h
2025-12-01 18:42:49 +08:00

28 lines
605 B
Objective-C

//
// QXSignCoinListView.h
// QXLive
//
// Created by 启星 on 2025/11/26.
//
#import <UIKit/UIKit.h>
NS_ASSUME_NONNULL_BEGIN
@protocol QXSignCoinListViewDelegate <NSObject>
@optional
-(void)coinListDidClickRecharge;
-(void)coinListDidSignWithCoin:(NSString*)coin;
@end
@interface QXSignCoinListView : UIView
@property (nonatomic,strong)NSString *signId;
@property (nonatomic,weak)id<QXSignCoinListViewDelegate>delegate;
@property (nonatomic,strong)QXRoomPitModel *pitModel;
-(void)refreshCoinListWith:(NSArray*)coinList;
-(void)showInView:(UIView *)view;
-(void)hide;
@end
NS_ASSUME_NONNULL_END