Files
keyboard/keyBoard/Class/Me/V/KBMyListCell.h
2025-11-10 19:22:31 +08:00

28 lines
862 B
Objective-C

//
// KBMyListCell.h
// keyBoard
//
// Created by Mac on 2025/11/10.
//
#import <UIKit/UIKit.h>
#import "BaseCell.h"
NS_ASSUME_NONNULL_BEGIN
@interface KBMyListCell : BaseCell
@property (nonatomic, strong) UIView *container; // 卡片容器(做圆角)
@property (nonatomic, strong) UIView *iconBg; // 图标圆角底
@property (nonatomic, strong) UIImageView *iconView; // 图标
@property (nonatomic, strong) UILabel *titleLabel; // 标题
@property (nonatomic, strong) UIView *bottomLine; // 分割线(仅上面一组使用)
@property (nonatomic, strong) UIImageView *arrowView; // 自定义右箭头
- (void)applyCornersWithFirst:(BOOL)isFirst last:(BOOL)isLast; // 组内圆角
- (void)setLineHidden:(BOOL)hidden;
@property (nonatomic, strong) NSDictionary *itemInfoDic; // 自定义右箭头
@end
NS_ASSUME_NONNULL_END