This commit is contained in:
2025-11-08 22:25:57 +08:00
parent 41b14ceea4
commit 675a9f6d64
12 changed files with 544 additions and 4 deletions

View File

@@ -0,0 +1,17 @@
//
// KBSkinSectionTitleCell.h
// keyBoard
//
// Created by Mac on 2025/11/8.
//
#import <UIKit/UIKit.h>
NS_ASSUME_NONNULL_BEGIN
/// MARK: - 区块标题 cell
@interface KBSkinSectionTitleCell : UICollectionViewCell
@property (nonatomic, strong) UILabel *titleLabel;
- (void)config:(NSString *)title;
@end
NS_ASSUME_NONNULL_END