Files
keyboard/CustomKeyboard/View/KBFunctionTagCell.h
2025-10-28 14:30:03 +08:00

24 lines
434 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.

//
// 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;
@end
NS_ASSUME_NONNULL_END