22 lines
402 B
C
22 lines
402 B
C
|
|
//
|
||
|
|
// KBKeyPreviewView.h
|
||
|
|
// CustomKeyboard
|
||
|
|
//
|
||
|
|
|
||
|
|
#import <UIKit/UIKit.h>
|
||
|
|
|
||
|
|
@class KBKey;
|
||
|
|
|
||
|
|
NS_ASSUME_NONNULL_BEGIN
|
||
|
|
|
||
|
|
/// 按键按下时显示的气泡预览视图(类似系统键盘上方弹出的放大字母)。
|
||
|
|
@interface KBKeyPreviewView : UIView
|
||
|
|
|
||
|
|
/// 配置预览内容:字符与可选图标。
|
||
|
|
- (void)configureWithKey:(KBKey *)key icon:(nullable UIImage *)icon;
|
||
|
|
|
||
|
|
@end
|
||
|
|
|
||
|
|
NS_ASSUME_NONNULL_END
|
||
|
|
|