19 lines
422 B
C
19 lines
422 B
C
|
|
//
|
||
|
|
// KBKeyboardSubscriptionOptionCell.h
|
||
|
|
// CustomKeyboard
|
||
|
|
//
|
||
|
|
// Created by Mac on 2025/12/17.
|
||
|
|
//
|
||
|
|
|
||
|
|
#import <UIKit/UIKit.h>
|
||
|
|
#import "KBKeyboardSubscriptionProduct.h"
|
||
|
|
|
||
|
|
NS_ASSUME_NONNULL_BEGIN
|
||
|
|
|
||
|
|
@interface KBKeyboardSubscriptionOptionCell : UICollectionViewCell
|
||
|
|
- (void)configureWithProduct:(KBKeyboardSubscriptionProduct *)product;
|
||
|
|
- (void)applySelected:(BOOL)selected animated:(BOOL)animated;
|
||
|
|
@end
|
||
|
|
|
||
|
|
NS_ASSUME_NONNULL_END
|