Files
keyboard/CustomKeyboard/View/KBKeyButton.h
2025-10-28 10:18:10 +08:00

18 lines
351 B
Objective-C
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

//
// KBKeyButton.h
// CustomKeyboard
//
#import <UIKit/UIKit.h>
@class KBKey;
/// 自定义键按钮UIButton 子类):圆角外观,按下高亮效果。
@interface KBKeyButton : UIButton
@property (nonatomic, strong) KBKey *key;
/// 配置基础样式(背景、圆角等)。创建按钮时调用。
- (void)applyDefaultStyle;
@end