Files
keyboard/keyBoard/Class/Home/VC/HomeRankContentVC.h
2025-12-03 19:19:20 +08:00

23 lines
578 B
Objective-C
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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