18 lines
313 B
Objective-C
18 lines
313 B
Objective-C
//
|
|
// KBSkinCardCell.h
|
|
// keyBoard
|
|
//
|
|
// 推荐皮肤 - 简单卡片 cell。
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface KBSkinCardCell : UICollectionViewCell
|
|
- (void)configWithTitle:(NSString *)title imageURL:(nullable NSString *)url price:(NSString *)price;
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|
|
|