Files
keyboard/keyBoard/Class/Me/V/KBPersonInfoItemCell.h
2025-11-11 14:56:57 +08:00

27 lines
548 B
Objective-C
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

//
// 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