21 lines
511 B
Objective-C
21 lines
511 B
Objective-C
//
|
||
// KBVipSubscribeCell.h
|
||
// keyBoard
|
||
//
|
||
// 订阅选项 Cell:右侧选择按钮(pay_circle_normal / pay_circle_sel)
|
||
//
|
||
|
||
#import <UIKit/UIKit.h>
|
||
|
||
NS_ASSUME_NONNULL_BEGIN
|
||
|
||
@interface KBVipSubscribeCell : UICollectionViewCell
|
||
/// 配置展示文案
|
||
- (void)configTitle:(NSString *)title price:(NSString *)price strike:(nullable NSString *)strike;
|
||
/// 同步选中态(更新右侧选择图标、边框颜色)
|
||
- (void)applySelected:(BOOL)selected animated:(BOOL)animated;
|
||
@end
|
||
|
||
NS_ASSUME_NONNULL_END
|
||
|