This commit is contained in:
2025-11-07 20:58:14 +08:00
parent 91d754b389
commit 48a12f0919
30 changed files with 282 additions and 46 deletions

View File

@@ -9,7 +9,7 @@
NS_ASSUME_NONNULL_BEGIN
@interface HomeHotVC : UIViewController
@interface HomeHotVC : BaseViewController
// 列表
@property (nonatomic, strong) BaseTableView *tableView;
@end

View File

@@ -29,8 +29,6 @@
- (void)viewDidLoad {
[super viewDidLoad];
self.view.backgroundColor = [UIColor whiteColor];
//
self.dataSource = @[
@{@"rank":@4, @"title":@"Ambiguous", @"sub":@"Be Neither Too Close Nor Too Distant, Want To ...", @"joined":@NO},

View File

@@ -10,7 +10,7 @@
#import "JXCategoryListContainerView.h"
NS_ASSUME_NONNULL_BEGIN
@interface HomeRankVC : UIViewController<JXCategoryListContainerViewDelegate>
@interface HomeRankVC : BaseViewController<JXCategoryListContainerViewDelegate>
// 列表
@property (nonatomic, strong) UICollectionView *collectionView;
@end

View File

@@ -21,7 +21,6 @@
- (void)viewDidLoad {
[super viewDidLoad];
// Do any additional setup after loading the view.
self.view.backgroundColor = [UIColor grayColor];
self.titles = @[@"螃蟹啊斯柯达积分卡", @"小龙虾", @"苹果", @"胡萝卜", @"葡萄", @"西瓜"];
[self.view addSubview:self.myCategoryView];
[self.view addSubview:self.listContainerView];