This commit is contained in:
2025-12-03 19:19:20 +08:00
parent b00283cd96
commit 716f91bdd0
8 changed files with 147 additions and 47 deletions

View File

@@ -7,12 +7,15 @@
#import <UIKit/UIKit.h>
#import "JXCategoryListContainerView.h"
#import "KBTag.h"
NS_ASSUME_NONNULL_BEGIN
@interface HomeRankContentVC : UIViewController<JXCategoryListContentViewDelegate, UICollectionViewDelegate, UICollectionViewDataSource, UICollectionViewDelegateFlowLayout>
@property (nonatomic, strong) UICollectionView *collectionView;
@property (nonatomic, strong) KBTag *tagModel;
/// 指定标签 id 的构造方法index 对应的 tagId 由 HomeRankVC 传入
- (instancetype)initWithTagId:(nullable NSString *)tagId;
@end