Files
featherVoice/QXLive/Room(房间)/View/签约房/QXSignCoinListView.h

28 lines
605 B
C
Raw Normal View History

2025-11-28 22:43:06 +08:00
//
// 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;
2025-12-01 18:42:49 +08:00
-(void)refreshCoinListWith:(NSArray*)coinList;
2025-11-28 22:43:06 +08:00
-(void)showInView:(UIView *)view;
-(void)hide;
@end
NS_ASSUME_NONNULL_END