去除假的用户信息

This commit is contained in:
2026-02-25 11:15:04 +08:00
parent 1c9013bede
commit 851c0d9531
2 changed files with 7 additions and 7 deletions

View File

@@ -27,12 +27,12 @@ static NSString * const kKBVipReviewItemCellId = @"kKBVipReviewItemCellId";
// //
_data = @[ _data = @[
@{@"name":@"Sdsd666", @"text":@"I Highly Recommend This App. It Taught Me How To Chat"}, // @{@"name":@"Sdsd666", @"text":@"I Highly Recommend This App. It Taught Me How To Chat"},
@{@"name":@"Joyce", @"text":@"Great keyboard and AI features!"}, // @{@"name":@"Joyce", @"text":@"Great keyboard and AI features!"},
@{@"name":@"Luna", @"text":@"Amazing app, love it."}, // @{@"name":@"Luna", @"text":@"Amazing app, love it."},
@{@"name":@"Mark", @"text":@"Helps with chat and emotion."}, // @{@"name":@"Mark", @"text":@"Helps with chat and emotion."},
@{@"name":@"Alan", @"text":@"Useful personalized keyboard."}, // @{@"name":@"Alan", @"text":@"Useful personalized keyboard."},
@{@"name":@"Coco", @"text":@"Recommend to friends."}, // @{@"name":@"Coco", @"text":@"Recommend to friends."},
]; ];
} }
return self; return self;

View File

@@ -396,7 +396,7 @@ static NSString * const kKBVipReviewListCellId = @"kKBVipReviewListCellId";
if (indexPath.section == 1) { if (indexPath.section == 1) {
return CGSizeMake(w, KBFit(75 + 6)); return CGSizeMake(w, KBFit(75 + 6));
} else { } else {
return CGSizeMake(w, 140); return CGSizeMake(w, 0);
} }
} }