18 lines
334 B
Objective-C
18 lines
334 B
Objective-C
//
|
|
// 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
|