新增删除弹窗,修改bug

This commit is contained in:
2026-02-04 16:57:19 +08:00
parent 533e23ebfe
commit 3e30f619b9
5 changed files with 349 additions and 22 deletions

View File

@@ -0,0 +1,27 @@
//
// KBAIChatDeleteConfirmView.h
// keyBoard
//
// Created by Codex on 2026/02/03.
//
#import <UIKit/UIKit.h>
NS_ASSUME_NONNULL_BEGIN
@class KBAIChatDeleteConfirmView;
@protocol KBAIChatDeleteConfirmViewDelegate <NSObject>
- (void)chatDeleteConfirmViewDidTapDelete:(KBAIChatDeleteConfirmView *)view;
- (void)chatDeleteConfirmViewDidTapCancel:(KBAIChatDeleteConfirmView *)view;
@end
@interface KBAIChatDeleteConfirmView : UIView
@property (nonatomic, weak) id<KBAIChatDeleteConfirmViewDelegate> delegate;
@end
NS_ASSUME_NONNULL_END