2025-10-28 14:30:03 +08:00
|
|
|
|
//
|
|
|
|
|
|
// KBFunctionTagCell.h
|
|
|
|
|
|
// CustomKeyboard
|
|
|
|
|
|
//
|
|
|
|
|
|
// Created by Codex on 2025/10/28.
|
|
|
|
|
|
// 话术标签Cell:左图标+右标题,圆角灰白底
|
|
|
|
|
|
|
|
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
|
|
|
|
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
|
|
|
|
|
|
|
|
@interface KBFunctionTagCell : UICollectionViewCell
|
|
|
|
|
|
|
|
|
|
|
|
/// 标题
|
|
|
|
|
|
@property (nonatomic, strong, readonly) UILabel *titleLabel;
|
|
|
|
|
|
|
|
|
|
|
|
/// 头像/图标
|
|
|
|
|
|
@property (nonatomic, strong, readonly) UIImageView *iconView;
|
|
|
|
|
|
|
2025-11-12 16:49:19 +08:00
|
|
|
|
/// 显示/隐藏加载指示(小菊花)
|
|
|
|
|
|
- (void)setLoading:(BOOL)loading;
|
|
|
|
|
|
|
2025-10-28 14:30:03 +08:00
|
|
|
|
@end
|
|
|
|
|
|
|
|
|
|
|
|
NS_ASSUME_NONNULL_END
|