Files
keyboard/keyBoard/Class/Me/V/KBSkinDetailHeaderCell.h

22 lines
574 B
C
Raw Normal View History

2025-11-08 22:25:57 +08:00
//
// KBSkinDetailHeaderCell.h
// keyBoard
//
// Created by Mac on 2025/11/8.
//
#import <UIKit/UIKit.h>
NS_ASSUME_NONNULL_BEGIN
2025-12-11 15:39:33 +08:00
@class KBShopThemeDetailModel;
2025-11-08 22:25:57 +08:00
@interface KBSkinDetailHeaderCell : UICollectionViewCell
@property (nonatomic, strong) UIImageView *coverView; // 顶部大图
@property (nonatomic, strong) UILabel *leftLabel; // 下方左侧文案(#1B1F1A
@property (nonatomic, strong) UILabel *rightLabel; // 下方右侧文案(#02BEAC
2025-12-11 15:39:33 +08:00
- (void)configWithDetail:(nullable KBShopThemeDetailModel *)detail;
2025-11-08 22:25:57 +08:00
@end
NS_ASSUME_NONNULL_END