21 lines
370 B
Objective-C
21 lines
370 B
Objective-C
//
|
|
// 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
|
|
|