添加设置

This commit is contained in:
2025-10-28 18:02:10 +08:00
parent 02dd204744
commit 0031b7a5f6
7 changed files with 164 additions and 3 deletions

View File

@@ -0,0 +1,20 @@
//
// KBSettingView.h
// CustomKeyboard
//
// 简单的设置页面:左上角返回箭头按钮 + 占位内容区域。
//
#import <UIKit/UIKit.h>
NS_ASSUME_NONNULL_BEGIN
@interface KBSettingView : UIView
/// 左上角返回按钮(外部添加 target 实现返回)
@property (nonatomic, strong, readonly) UIButton *backButton;
@end
NS_ASSUME_NONNULL_END