Files
keyboard/keyBoard/Class/Pay/V/KBSvipSubscribeCell.h

22 lines
643 B
C
Raw Normal View History

2026-02-04 12:48:18 +08:00
//
// KBSvipSubscribeCell.h
// keyBoard
//
// SVIP 订阅选项 Cell横向排列选中时绿色边框
//
#import <UIKit/UIKit.h>
NS_ASSUME_NONNULL_BEGIN
@interface KBSvipSubscribeCell : UICollectionViewCell
2026-02-04 15:40:45 +08:00
/// 配置展示文案(带货币符号)
- (void)configTitle:(NSString *)title currency:(NSString *)currency price:(NSString *)price strike:(nullable NSString *)strike;
/// 配置展示文案(兼容旧方法)
2026-02-04 12:48:18 +08:00
- (void)configTitle:(NSString *)title price:(NSString *)price strike:(nullable NSString *)strike;
/// 同步选中态
- (void)applySelected:(BOOL)selected animated:(BOOL)animated;
@end
NS_ASSUME_NONNULL_END