18 lines
318 B
C
18 lines
318 B
C
|
|
//
|
|||
|
|
// KBVipReviewItemCell.h
|
|||
|
|
// keyBoard
|
|||
|
|
//
|
|||
|
|
// 横向列表中的 item,包含 5 个爱心图标:pay_5aixin_icon
|
|||
|
|
//
|
|||
|
|
|
|||
|
|
#import <UIKit/UIKit.h>
|
|||
|
|
|
|||
|
|
NS_ASSUME_NONNULL_BEGIN
|
|||
|
|
|
|||
|
|
@interface KBVipReviewItemCell : UICollectionViewCell
|
|||
|
|
- (void)configWithName:(NSString *)name text:(NSString *)text;
|
|||
|
|
@end
|
|||
|
|
|
|||
|
|
NS_ASSUME_NONNULL_END
|
|||
|
|
|