This commit is contained in:
2025-10-28 10:18:10 +08:00
parent efb04d134e
commit 1deca2ae5b
166 changed files with 17288 additions and 1427 deletions

View File

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