This commit is contained in:
2025-11-17 16:16:38 +08:00
parent d849b201ca
commit f366a4aa6c
20 changed files with 585 additions and 1 deletions

View File

@@ -0,0 +1,22 @@
//
// KBSexSelVC.h
// keyBoard
//
// Created by Mac on 2025/11/17.
// 性别选择
#import <UIKit/UIKit.h>
NS_ASSUME_NONNULL_BEGIN
/// 性别选择页
/// 说明:只负责展示静态 UI 与首次进入时的引导。
@interface KBSexSelVC : BaseViewController
/// 用户点击「Skip」或底部确认按钮后的回调。
/// AppDelegate 通过该回调切换到主 TabBar。
@property (nonatomic, copy, nullable) void (^didFinishSelectBlock)(void);
@end
NS_ASSUME_NONNULL_END