This commit is contained in:
2025-11-14 23:09:04 +08:00
parent dace0a9309
commit 1f9dbba39d
20 changed files with 183 additions and 63 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 248 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 248 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 248 KiB

View File

@@ -1,7 +1,7 @@
{ {
"images" : [ "images" : [
{ {
"filename" : "AppIcon60x60@2x.png", "filename" : "切图 210.png",
"idiom" : "universal", "idiom" : "universal",
"platform" : "ios", "platform" : "ios",
"size" : "1024x1024" "size" : "1024x1024"
@@ -13,7 +13,7 @@
"value" : "dark" "value" : "dark"
} }
], ],
"filename" : "AppIcon60x60@2x 1.png", "filename" : "切图 208.png",
"idiom" : "universal", "idiom" : "universal",
"platform" : "ios", "platform" : "ios",
"size" : "1024x1024" "size" : "1024x1024"
@@ -25,7 +25,7 @@
"value" : "tinted" "value" : "tinted"
} }
], ],
"filename" : "AppIcon60x60@2x 2.png", "filename" : "切图 209.png",
"idiom" : "universal", "idiom" : "universal",
"platform" : "ios", "platform" : "ios",
"size" : "1024x1024" "size" : "1024x1024"

Binary file not shown.

After

Width:  |  Height:  |  Size: 479 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 479 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 479 KiB

View File

@@ -0,0 +1,22 @@
{
"images" : [
{
"idiom" : "universal",
"scale" : "1x"
},
{
"filename" : "close_white2_icon@2x.png",
"idiom" : "universal",
"scale" : "2x"
},
{
"filename" : "close_white2_icon@3x.png",
"idiom" : "universal",
"scale" : "3x"
}
],
"info" : {
"author" : "xcode",
"version" : 1
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.7 KiB

View File

@@ -0,0 +1,22 @@
{
"images" : [
{
"idiom" : "universal",
"scale" : "1x"
},
{
"filename" : "pay_vipbg_icon@2x.png",
"idiom" : "universal",
"scale" : "2x"
},
{
"filename" : "pay_vipbg_icon@3x.png",
"idiom" : "universal",
"scale" : "3x"
}
],
"info" : {
"author" : "xcode",
"version" : 1
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 251 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 533 KiB

View File

@@ -0,0 +1,22 @@
{
"images" : [
{
"idiom" : "universal",
"scale" : "1x"
},
{
"filename" : "pay_wanwhite_icon@2x.png",
"idiom" : "universal",
"scale" : "2x"
},
{
"filename" : "pay_wanwhite_icon@3x.png",
"idiom" : "universal",
"scale" : "3x"
}
],
"info" : {
"author" : "xcode",
"version" : 1
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 18 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 38 KiB

View File

@@ -12,6 +12,10 @@
@property (nonatomic, strong) UIView *containerView; @property (nonatomic, strong) UIView *containerView;
// pay_vip_icon // pay_vip_icon
@property (nonatomic, strong) UIImageView *vipImageView; @property (nonatomic, strong) UIImageView *vipImageView;
@property (nonatomic, strong) UIImageView *wanImageView;
@property (nonatomic, strong) UILabel *titleLabel;
@property (nonatomic, strong) UILabel *desLabel;
// //
@property (nonatomic, strong) UIImageView *aiImageView; @property (nonatomic, strong) UIImageView *aiImageView;
@property (nonatomic, strong) UIImageView *keyboardImageView; @property (nonatomic, strong) UIImageView *keyboardImageView;
@@ -33,11 +37,28 @@
// 1. // 1.
[self.containerView addSubview:self.vipImageView]; [self.containerView addSubview:self.vipImageView];
[self.vipImageView mas_makeConstraints:^(MASConstraintMaker *make) { [self.vipImageView mas_makeConstraints:^(MASConstraintMaker *make) {
make.left.equalTo(self.containerView).offset(16); make.right.left.equalTo(self.containerView).inset(KBFit(27));
make.right.equalTo(self.containerView).offset(-16); make.top.equalTo(self.containerView).offset(KB_NAV_TOTAL_HEIGHT + 10);
make.top.equalTo(self.containerView).offset(KB_NAV_TOTAL_HEIGHT + 8); make.height.mas_equalTo((269));
make.height.mas_equalTo(KBFit(180));
}]; }];
[self.containerView addSubview:self.wanImageView];
[self.wanImageView mas_makeConstraints:^(MASConstraintMaker *make) {
make.right.left.equalTo(self.containerView);
make.top.equalTo(self.vipImageView).offset(70);
make.bottom.equalTo(self.containerView);
}];
[self.containerView addSubview:self.titleLabel];
[self.titleLabel mas_makeConstraints:^(MASConstraintMaker *make) {
make.centerX.equalTo(self.containerView);
make.top.equalTo(self.wanImageView).offset(53);
}];
[self.containerView addSubview:self.desLabel];
[self.desLabel mas_makeConstraints:^(MASConstraintMaker *make) {
make.centerX.equalTo(self.containerView);
make.top.equalTo(self.titleLabel.mas_bottom).offset(10);
}];
// 2. // 2.
UIView *g1 = [self gridItemWithImageView:self.aiImageView]; UIView *g1 = [self gridItemWithImageView:self.aiImageView];
@@ -49,11 +70,11 @@
[self.containerView addSubview:g3]; [self.containerView addSubview:g3];
[self.containerView addSubview:g4]; [self.containerView addSubview:g4];
CGFloat spacing = 12; CGFloat spacing = 16;
[g1 mas_makeConstraints:^(MASConstraintMaker *make) { [g1 mas_makeConstraints:^(MASConstraintMaker *make) {
make.left.equalTo(self.vipImageView); make.left.equalTo(self.vipImageView);
make.top.equalTo(self.vipImageView.mas_bottom).offset(18); make.top.equalTo(self.desLabel.mas_bottom).offset(18);
make.height.mas_equalTo(KBFit(90)); make.height.mas_equalTo(((113)));
}]; }];
[g2 mas_makeConstraints:^(MASConstraintMaker *make) { [g2 mas_makeConstraints:^(MASConstraintMaker *make) {
make.right.equalTo(self.vipImageView); make.right.equalTo(self.vipImageView);
@@ -74,7 +95,7 @@
make.left.equalTo(g3.mas_right).offset(spacing); make.left.equalTo(g3.mas_right).offset(spacing);
make.height.equalTo(g1); make.height.equalTo(g1);
make.width.equalTo(g1); make.width.equalTo(g1);
make.bottom.lessThanOrEqualTo(self.containerView).offset(-12); // make.bottom.lessThanOrEqualTo(self.containerView).offset(-12);
}]; }];
} }
return self; return self;
@@ -84,13 +105,15 @@
- (UIView *)gridItemWithImageView:(UIImageView *)iv { - (UIView *)gridItemWithImageView:(UIImageView *)iv {
// //
UIView *v = [UIView new]; UIView *v = [UIView new];
v.backgroundColor = [UIColor colorWithWhite:0.97 alpha:1.0]; // v.backgroundColor = [UIColor colorWithWhite:0.97 alpha:1.0];
v.layer.cornerRadius = 12; // v.layer.cornerRadius = 12;
v.layer.masksToBounds = YES; // v.layer.masksToBounds = YES;
[v addSubview:iv]; [v addSubview:iv];
iv.contentMode = UIViewContentModeScaleAspectFill;
[iv mas_makeConstraints:^(MASConstraintMaker *make) { [iv mas_makeConstraints:^(MASConstraintMaker *make) {
make.center.equalTo(v); // make.center.equalTo(v);
make.width.height.mas_equalTo(40); // make.width.height.mas_equalTo(40);
make.edges.equalTo(v);
}]; }];
return v; return v;
} }
@@ -108,12 +131,18 @@
if (!_vipImageView) { if (!_vipImageView) {
_vipImageView = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"pay_vip_icon"]]; _vipImageView = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"pay_vip_icon"]];
_vipImageView.contentMode = UIViewContentModeScaleAspectFill; _vipImageView.contentMode = UIViewContentModeScaleAspectFill;
_vipImageView.clipsToBounds = YES;
_vipImageView.layer.cornerRadius = 14;
} }
return _vipImageView; return _vipImageView;
} }
- (UIImageView *)wanImageView {
if (!_wanImageView) {
_wanImageView = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"pay_wanwhite_icon"]];
_wanImageView.contentMode = UIViewContentModeScaleAspectFill;
}
return _wanImageView;
}
- (UIImageView *)aiImageView { - (UIImageView *)aiImageView {
if (!_aiImageView) { if (!_aiImageView) {
_aiImageView = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"pay_ai_icon"]]; _aiImageView = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"pay_ai_icon"]];
@@ -143,5 +172,25 @@
return _emotionImageView; return _emotionImageView;
} }
- (UILabel *)titleLabel{
if (!_titleLabel) {
_titleLabel = [[UILabel alloc] init];
_titleLabel.text = @"Become a member of LOVE KEY";
_titleLabel.textColor = [UIColor colorWithHex:KBBlackValue];
_titleLabel.font = [UIFont systemFontOfSize:25 weight:UIFontWeightBold];
}
return _titleLabel;
}
- (UILabel *)desLabel{
if (!_desLabel) {
_desLabel = [[UILabel alloc] init];
_desLabel.text = @"Unlock all functions";
_desLabel.textColor = [UIColor colorWithHex:KBBlackValue];
_desLabel.font = [UIFont systemFontOfSize:16 weight:UIFontWeightBold];
}
return _desLabel;
}
@end @end

View File

@@ -13,7 +13,6 @@
@property (nonatomic, strong) UILabel *priceLabel; // $4.49 @property (nonatomic, strong) UILabel *priceLabel; // $4.49
@property (nonatomic, strong) UILabel *strikeLabel; // 线 @property (nonatomic, strong) UILabel *strikeLabel; // 线
@property (nonatomic, strong) UIButton *selectButton; // @property (nonatomic, strong) UIButton *selectButton; //
@property (nonatomic, strong) CAShapeLayer *borderLayer; //
@end @end
@implementation KBVipSubscribeCell @implementation KBVipSubscribeCell
@@ -23,8 +22,12 @@
self.contentView.backgroundColor = [UIColor clearColor]; self.contentView.backgroundColor = [UIColor clearColor];
[self.contentView addSubview:self.cardView]; [self.contentView addSubview:self.cardView];
// self.cardView.backgroundColor = [UIColor redColor];
[self.cardView mas_makeConstraints:^(MASConstraintMaker *make) { [self.cardView mas_makeConstraints:^(MASConstraintMaker *make) {
make.edges.equalTo(self.contentView); make.left.right.equalTo(self.contentView);
make.top.equalTo(self.contentView).inset(6);
make.bottom.equalTo(self.contentView);
}]; }];
[self.cardView addSubview:self.titleLabel]; [self.cardView addSubview:self.titleLabel];
@@ -34,7 +37,7 @@
[self.titleLabel mas_makeConstraints:^(MASConstraintMaker *make) { [self.titleLabel mas_makeConstraints:^(MASConstraintMaker *make) {
make.left.equalTo(self.cardView).offset(16); make.left.equalTo(self.cardView).offset(16);
make.top.equalTo(self.cardView).offset(16); make.top.equalTo(self.cardView).offset(11);
}]; }];
[self.priceLabel mas_makeConstraints:^(MASConstraintMaker *make) { [self.priceLabel mas_makeConstraints:^(MASConstraintMaker *make) {
make.left.equalTo(self.titleLabel); make.left.equalTo(self.titleLabel);
@@ -49,27 +52,16 @@
make.right.equalTo(self.cardView).offset(-16); make.right.equalTo(self.cardView).offset(-16);
make.width.height.mas_equalTo(28); make.width.height.mas_equalTo(28);
}]; }];
// CALayer borderLayer
// 绿 self.cardView.layer.borderWidth = 1;
self.borderLayer = [CAShapeLayer layer]; self.cardView.layer.borderColor = [UIColor colorWithWhite:0.9 alpha:1.0].CGColor;
self.borderLayer.strokeColor = [UIColor colorWithWhite:0.9 alpha:1.0].CGColor;
// 使
self.borderLayer.fillColor = UIColor.clearColor.CGColor;
self.borderLayer.lineWidth = 1.5;
// label/button
[self.cardView.layer insertSublayer:self.borderLayer atIndex:0];
} }
return self; return self;
} }
- (void)layoutSubviews { - (void)layoutSubviews {
[super layoutSubviews]; [super layoutSubviews];
CGFloat radius = 16;
UIBezierPath *path = [UIBezierPath bezierPathWithRoundedRect:self.cardView.bounds cornerRadius:radius];
self.cardView.layer.cornerRadius = radius;
self.cardView.layer.masksToBounds = YES;
self.borderLayer.frame = self.cardView.bounds;
self.borderLayer.path = path.CGPath;
} }
- (void)prepareForReuse { - (void)prepareForReuse {
@@ -101,17 +93,13 @@
[self.selectButton setImage:img forState:UIControlStateNormal]; [self.selectButton setImage:img forState:UIControlStateNormal];
CGColorRef color = (selected ? [UIColor colorWithHex:KBColorValue].CGColor : [UIColor colorWithWhite:0.9 alpha:1.0].CGColor); CGColorRef color = (selected ? [UIColor colorWithHex:KBColorValue].CGColor : [UIColor colorWithWhite:0.9 alpha:1.0].CGColor);
void (^changes)(void) = ^{ void (^changes)(void) = ^{
self.borderLayer.strokeColor = color; self.cardView.layer.borderColor = color;
self.cardView.layer.shadowOpacity = selected ? 0.12 : 0.0; // self.cardView.layer.shadowOpacity = selected ? 0.12 : 0.0;
self.cardView.layer.shadowColor = [UIColor colorWithHex:KBColorValue].CGColor; // self.cardView.layer.shadowColor = [UIColor colorWithHex:KBColorValue].CGColor;
self.cardView.layer.shadowRadius = selected ? 8 : 0; // self.cardView.layer.shadowRadius = selected ? 8 : 0;
self.cardView.layer.shadowOffset = CGSizeMake(0, selected ? 4 : 0); // self.cardView.layer.shadowOffset = CGSizeMake(0, selected ? 4 : 0);
}; };
if (animated) {
[UIView animateWithDuration:0.15 animations:changes];
} else {
changes(); changes();
}
} }
#pragma mark - Lazy #pragma mark - Lazy
@@ -119,6 +107,9 @@
if (!_cardView) { if (!_cardView) {
_cardView = [UIView new]; _cardView = [UIView new];
_cardView.backgroundColor = [UIColor whiteColor]; _cardView.backgroundColor = [UIColor whiteColor];
CGFloat radius = 10;
_cardView.layer.cornerRadius = radius;
_cardView.clipsToBounds = YES;
} }
return _cardView; return _cardView;
} }
@@ -127,7 +118,7 @@
_titleLabel = [UILabel new]; _titleLabel = [UILabel new];
_titleLabel.text = @"Monthly Subscription"; _titleLabel.text = @"Monthly Subscription";
_titleLabel.textColor = [UIColor colorWithHex:KBBlackValue]; _titleLabel.textColor = [UIColor colorWithHex:KBBlackValue];
_titleLabel.font = [UIFont systemFontOfSize:16 weight:UIFontWeightSemibold]; _titleLabel.font = [UIFont systemFontOfSize:13 weight:UIFontWeightSemibold];
} }
return _titleLabel; return _titleLabel;
} }
@@ -136,7 +127,7 @@
_priceLabel = [UILabel new]; _priceLabel = [UILabel new];
_priceLabel.text = @"$4.49"; _priceLabel.text = @"$4.49";
_priceLabel.textColor = [UIColor colorWithHex:KBBlackValue]; _priceLabel.textColor = [UIColor colorWithHex:KBBlackValue];
_priceLabel.font = [UIFont systemFontOfSize:28 weight:UIFontWeightBold]; _priceLabel.font = [UIFont systemFontOfSize:20 weight:UIFontWeightBold];
} }
return _priceLabel; return _priceLabel;
} }
@@ -144,7 +135,7 @@
if (!_strikeLabel) { if (!_strikeLabel) {
_strikeLabel = [UILabel new]; _strikeLabel = [UILabel new];
_strikeLabel.text = @"$4.49"; _strikeLabel.text = @"$4.49";
_strikeLabel.font = [UIFont systemFontOfSize:16 weight:UIFontWeightSemibold]; _strikeLabel.font = [UIFont systemFontOfSize:20 weight:UIFontWeightSemibold];
_strikeLabel.textColor = [UIColor colorWithWhite:0.7 alpha:1.0]; _strikeLabel.textColor = [UIColor colorWithWhite:0.7 alpha:1.0];
} }
return _strikeLabel; return _strikeLabel;

View File

@@ -10,7 +10,7 @@
NS_ASSUME_NONNULL_BEGIN NS_ASSUME_NONNULL_BEGIN
/// VIP 订阅页(整体使用 UICollectionView上下滚动 /// VIP 订阅页(整体使用 UICollectionView上下滚动
@interface KBVipPay : UIViewController @interface KBVipPay : BaseViewController
@end @end
NS_ASSUME_NONNULL_END NS_ASSUME_NONNULL_END

View File

@@ -19,6 +19,7 @@ static NSString * const kKBVipReviewListCellId = @"kKBVipReviewListCellId";
@property (nonatomic, strong) NSArray<NSDictionary *> *plans; // @property (nonatomic, strong) NSArray<NSDictionary *> *plans; //
@property (nonatomic, assign) NSInteger selectedIndex; // @property (nonatomic, assign) NSInteger selectedIndex; //
@property (nonatomic, strong) UIButton *closeButton; // @property (nonatomic, strong) UIButton *closeButton; //
@property (nonatomic, strong) UIImageView *bgImageView; //
@end @end
@@ -29,9 +30,15 @@ static NSString * const kKBVipReviewListCellId = @"kKBVipReviewListCellId";
// //
// self.kb_titleLabel.text = @"VIP"; // self.kb_titleLabel.text = @"VIP";
// self.kb_navView.backgroundColor = [UIColor clearColor]; // self.kb_navView.backgroundColor = [UIColor clearColor];
self.view.backgroundColor = [UIColor colorWithHex:0xF6F7FB];
self.view.backgroundColor = [UIColor colorWithWhite:0.97 alpha:1.0]; self.kb_enableCustomNavBar = NO;
self.bgImageView = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"pay_vipbg_icon"]];
self.bgImageView.contentMode = UIViewContentModeScaleAspectFill;
[self.view addSubview:self.bgImageView];
[self.bgImageView mas_makeConstraints:^(MASConstraintMaker *make) {
make.left.top.right.equalTo(self.view);
make.height.mas_equalTo(224);
}];
// //
self.plans = @[ self.plans = @[
@{@"title":@"Monthly Subscription", @"price":@"$4.49", @"strike":@"$4.49"}, @{@"title":@"Monthly Subscription", @"price":@"$4.49", @"strike":@"$4.49"},
@@ -39,17 +46,18 @@ static NSString * const kKBVipReviewListCellId = @"kKBVipReviewListCellId";
@{@"title":@"Monthly Subscription", @"price":@"$4.49", @"strike":@"$4.49"}, @{@"title":@"Monthly Subscription", @"price":@"$4.49", @"strike":@"$4.49"},
]; ];
self.selectedIndex = 1; // self.selectedIndex = 1; //
[self.view addSubview:self.closeButton];
[self.closeButton mas_makeConstraints:^(MASConstraintMaker *make) {
make.top.equalTo(self.view).offset(KB_NAV_TOTAL_HEIGHT);
make.left.equalTo(self.view).offset(15);
make.width.height.mas_equalTo(36);
}];
// //
[self.view addSubview:self.collectionView]; [self.view addSubview:self.collectionView];
[self.collectionView mas_makeConstraints:^(MASConstraintMaker *make) { [self.collectionView mas_makeConstraints:^(MASConstraintMaker *make) {
make.left.right.bottom.equalTo(self.view); make.left.right.bottom.equalTo(self.view);
make.top.equalTo(self.view).offset(KB_NAV_TOTAL_HEIGHT); make.top.equalTo(self.view).offset(0);
}];
[self.view addSubview:self.closeButton];
[self.closeButton mas_makeConstraints:^(MASConstraintMaker *make) {
make.top.equalTo(self.view).offset(KB_NAV_TOTAL_HEIGHT - 30);
make.left.equalTo(self.view).offset(15);
make.width.height.mas_equalTo(36);
}]; }];
[self.collectionView reloadData]; [self.collectionView reloadData];
@@ -67,6 +75,11 @@ static NSString * const kKBVipReviewListCellId = @"kKBVipReviewListCellId";
if (cell) { [cell applySelected:YES animated:NO]; } if (cell) { [cell applySelected:YES animated:NO]; }
} }
#pragma mark - Action
- (void)onTapClose{
[self.navigationController popViewControllerAnimated:true];
}
#pragma mark - UICollectionView DataSource #pragma mark - UICollectionView DataSource
- (NSInteger)numberOfSectionsInCollectionView:(UICollectionView *)collectionView { - (NSInteger)numberOfSectionsInCollectionView:(UICollectionView *)collectionView {
@@ -133,7 +146,7 @@ static NSString * const kKBVipReviewListCellId = @"kKBVipReviewListCellId";
- (CGSize)collectionView:(UICollectionView *)collectionView layout:(UICollectionViewLayout*)collectionViewLayout sizeForItemAtIndexPath:(NSIndexPath *)indexPath { - (CGSize)collectionView:(UICollectionView *)collectionView layout:(UICollectionViewLayout*)collectionViewLayout sizeForItemAtIndexPath:(NSIndexPath *)indexPath {
CGFloat w = KB_SCREEN_WIDTH - 32; CGFloat w = KB_SCREEN_WIDTH - 32;
if (indexPath.section == 1) { if (indexPath.section == 1) {
return CGSizeMake(w, 106); return CGSizeMake(w, KBFit(75 + 6));
} else { } else {
return CGSizeMake(w, 140); return CGSizeMake(w, 140);
} }
@@ -142,7 +155,7 @@ static NSString * const kKBVipReviewListCellId = @"kKBVipReviewListCellId";
- (CGSize)collectionView:(UICollectionView *)collectionView layout:(UICollectionViewLayout*)collectionViewLayout referenceSizeForHeaderInSection:(NSInteger)section { - (CGSize)collectionView:(UICollectionView *)collectionView layout:(UICollectionViewLayout*)collectionViewLayout referenceSizeForHeaderInSection:(NSInteger)section {
if (section == 0) { if (section == 0) {
// = 484 + // = 484 +
return CGSizeMake(KB_SCREEN_WIDTH, 484 + KB_NAV_TOTAL_HEIGHT); return CGSizeMake(KB_SCREEN_WIDTH, 474 + KB_NAV_TOTAL_HEIGHT);
} }
return CGSizeZero; return CGSizeZero;
} }
@@ -154,7 +167,8 @@ static NSString * const kKBVipReviewListCellId = @"kKBVipReviewListCellId";
- (UIEdgeInsets)collectionView:(UICollectionView *)collectionView layout:(UICollectionViewLayout*)collectionViewLayout insetForSectionAtIndex:(NSInteger)section { - (UIEdgeInsets)collectionView:(UICollectionView *)collectionView layout:(UICollectionViewLayout*)collectionViewLayout insetForSectionAtIndex:(NSInteger)section {
if (section == 1) { if (section == 1) {
return UIEdgeInsetsMake(0, 16, 10, 16); // cell header
return UIEdgeInsetsMake(16, 16, 10, 16);
} else if (section == 2) { } else if (section == 2) {
return UIEdgeInsetsMake(10, 16, 20, 16); return UIEdgeInsetsMake(10, 16, 20, 16);
} }
@@ -185,7 +199,7 @@ static NSString * const kKBVipReviewListCellId = @"kKBVipReviewListCellId";
- (UIButton *)closeButton { - (UIButton *)closeButton {
if (!_closeButton) { if (!_closeButton) {
_closeButton = [UIButton buttonWithType:UIButtonTypeCustom]; _closeButton = [UIButton buttonWithType:UIButtonTypeCustom];
[_closeButton setImage:[UIImage imageNamed:@"white_close_icon"] forState:UIControlStateNormal]; [_closeButton setImage:[UIImage imageNamed:@"close_white2_icon"] forState:UIControlStateNormal];
[_closeButton addTarget:self action:@selector(onTapClose) forControlEvents:UIControlEventTouchUpInside]; [_closeButton addTarget:self action:@selector(onTapClose) forControlEvents:UIControlEventTouchUpInside];
} }
return _closeButton; return _closeButton;