27 lines
548 B
Objective-C
27 lines
548 B
Objective-C
//
|
||
// 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
|
||
|