This commit is contained in:
2025-11-11 14:56:57 +08:00
parent 57bd4ba109
commit 17b8bf2bfd
6 changed files with 556 additions and 1 deletions

View File

@@ -0,0 +1,26 @@
//
// KBPersonInfoItemCell.h
// keyBoard
//
// Created by Codex on 2025/11/11.
//
#import <UIKit/UIKit.h>
NS_ASSUME_NONNULL_BEGIN
/// 个人资料页面的条目 Cell左标题右文案/箭头/复制按钮)
@interface KBPersonInfoItemCell : UITableViewCell
/// 配置
- (void)configWithTitle:(NSString *)title
value:(NSString *)value
showArrow:(BOOL)showArrow
showCopy:(BOOL)showCopy
isTop:(BOOL)isTop
isBottom:(BOOL)isBottom;
@end
NS_ASSUME_NONNULL_END