Files
keyboard/keyBoard/Class/Home/VC/HomeRankContentVC.h

23 lines
578 B
C
Raw Normal View History

2025-11-06 19:19:12 +08:00
//
// HomeRankContentVC.h
// keyBoard
//
// Created by Mac on 2025/11/6.
//
#import <UIKit/UIKit.h>
#import "JXCategoryListContainerView.h"
2025-12-03 19:19:20 +08:00
2025-11-06 19:19:12 +08:00
NS_ASSUME_NONNULL_BEGIN
2025-11-06 19:51:50 +08:00
@interface HomeRankContentVC : UIViewController<JXCategoryListContentViewDelegate, UICollectionViewDelegate, UICollectionViewDataSource, UICollectionViewDelegateFlowLayout>
2025-12-03 19:19:20 +08:00
2025-11-06 19:51:50 +08:00
@property (nonatomic, strong) UICollectionView *collectionView;
2025-12-03 19:19:20 +08:00
/// 指定标签 id 的构造方法index 对应的 tagId 由 HomeRankVC 传入
- (instancetype)initWithTagId:(nullable NSString *)tagId;
2025-11-06 19:19:12 +08:00
@end
NS_ASSUME_NONNULL_END