30 lines
676 B
Objective-C
30 lines
676 B
Objective-C
//
|
|
// QXBarAskAlertView.h
|
|
// QXLive
|
|
//
|
|
// Created by 启星 on 2026/1/5.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
@class QXBarAskAlertView;
|
|
@protocol QXBarAskAlertViewDelegate <NSObject>
|
|
|
|
@optional
|
|
-(void)askViewDidRecharge:(QXBarAskAlertView*)alertView;
|
|
|
|
-(void)askViewDidSend:(QXBarAskAlertView*)alertView pitModel:(QXRoomPitModel*)pitModel giftInfo:(QXGiftModel*)giftInfo;
|
|
|
|
@end
|
|
@interface QXBarAskAlertView : UIView
|
|
@property (nonatomic,strong)NSString *roomId;
|
|
@property (nonatomic,strong)QXRoomPitModel *pitModel;
|
|
@property (nonatomic,weak)id<QXBarAskAlertViewDelegate>delegate;
|
|
-(void)showInView:(UIView *)view;
|
|
|
|
-(void)hide;
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|