20 lines
450 B
C
20 lines
450 B
C
|
|
//
|
|||
|
|
// KBSvipSubscribeCell.h
|
|||
|
|
// keyBoard
|
|||
|
|
//
|
|||
|
|
// SVIP 订阅选项 Cell:横向排列,选中时绿色边框
|
|||
|
|
//
|
|||
|
|
|
|||
|
|
#import <UIKit/UIKit.h>
|
|||
|
|
|
|||
|
|
NS_ASSUME_NONNULL_BEGIN
|
|||
|
|
|
|||
|
|
@interface KBSvipSubscribeCell : UICollectionViewCell
|
|||
|
|
/// 配置展示文案
|
|||
|
|
- (void)configTitle:(NSString *)title price:(NSString *)price strike:(nullable NSString *)strike;
|
|||
|
|
/// 同步选中态
|
|||
|
|
- (void)applySelected:(BOOL)selected animated:(BOOL)animated;
|
|||
|
|
@end
|
|||
|
|
|
|||
|
|
NS_ASSUME_NONNULL_END
|