This commit is contained in:
启星
2025-11-28 22:43:06 +08:00
parent 8913ea6f48
commit 7eb4f8d3b8
197 changed files with 7315 additions and 666 deletions

View File

@@ -0,0 +1,27 @@
//
// 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)refreshCoinList;
-(void)showInView:(UIView *)view;
-(void)hide;
@end
NS_ASSUME_NONNULL_END