2025-12-19 18:45:14 +08:00
|
|
|
//
|
|
|
|
|
// KBBackspaceLongPressHandler.h
|
|
|
|
|
// CustomKeyboard
|
|
|
|
|
//
|
|
|
|
|
|
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
|
|
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
|
|
|
|
|
|
@interface KBBackspaceLongPressHandler : NSObject
|
|
|
|
|
|
|
|
|
|
- (instancetype)initWithContainerView:(UIView *)containerView;
|
|
|
|
|
|
2025-12-19 19:56:39 +08:00
|
|
|
/// 配置删除按钮(包含长按删除;可选是否显示“立刻清空”提示)
|
|
|
|
|
- (void)bindDeleteButton:(nullable UIView *)button showClearLabel:(BOOL)showClearLabel;
|
2025-12-19 18:45:14 +08:00
|
|
|
|
|
|
|
|
/// 触发“立刻清空”逻辑(可用于功能面板的清空按钮)
|
|
|
|
|
- (void)performClearAction;
|
|
|
|
|
|
|
|
|
|
@end
|
|
|
|
|
|
|
|
|
|
NS_ASSUME_NONNULL_END
|