This commit is contained in:
2026-01-15 18:16:56 +08:00
parent da62d4f411
commit 32c4138ae0
29 changed files with 1523 additions and 95 deletions

View File

@@ -0,0 +1,21 @@
//
// KBVoiceRecordManager.h
// 主 App 录音管理(用于键盘桥接)
//
#import <Foundation/Foundation.h>
NS_ASSUME_NONNULL_BEGIN
@interface KBVoiceRecordManager : NSObject
+ (instancetype)shared;
- (void)startRecording;
- (void)stopRecording;
@property (nonatomic, assign, readonly, getter=isRecording) BOOL recording;
@end
NS_ASSUME_NONNULL_END