28 lines
605 B
Objective-C
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
|