1
This commit is contained in:
28
keyBoard/Class/AiTalk/V/KBChatLimitPopView.h
Normal file
28
keyBoard/Class/AiTalk/V/KBChatLimitPopView.h
Normal file
@@ -0,0 +1,28 @@
|
||||
//
|
||||
// KBChatLimitPopView.h
|
||||
// keyBoard
|
||||
//
|
||||
// Created by Codex on 2026/1/27.
|
||||
//
|
||||
|
||||
#import <UIKit/UIKit.h>
|
||||
|
||||
NS_ASSUME_NONNULL_BEGIN
|
||||
|
||||
@class KBChatLimitPopView;
|
||||
|
||||
@protocol KBChatLimitPopViewDelegate <NSObject>
|
||||
@optional
|
||||
- (void)chatLimitPopViewDidTapCancel:(KBChatLimitPopView *)view;
|
||||
- (void)chatLimitPopViewDidTapRecharge:(KBChatLimitPopView *)view;
|
||||
@end
|
||||
|
||||
/// 聊天次数用尽提示弹窗内容视图(配合 LSTPopView 使用)
|
||||
@interface KBChatLimitPopView : UIView
|
||||
|
||||
@property (nonatomic, weak) id<KBChatLimitPopViewDelegate> delegate;
|
||||
@property (nonatomic, copy) NSString *message;
|
||||
|
||||
@end
|
||||
|
||||
NS_ASSUME_NONNULL_END
|
||||
Reference in New Issue
Block a user