22 lines
497 B
Objective-C
22 lines
497 B
Objective-C
//
|
|
// XPHomeViewController.h
|
|
// xplan-ios
|
|
//
|
|
// Created by 冯硕 on 2021/11/29.
|
|
//
|
|
|
|
#import "MvpViewController.h"
|
|
#import <JXCategoryView/JXCategoryListContainerView.h>
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
|
|
@interface XPHomePartyViewController : MvpViewController<JXCategoryListContentViewDelegate>
|
|
///模块的 ID
|
|
@property (nonatomic,copy) NSString *tabId;
|
|
///是否是个播
|
|
@property (nonatomic,assign) BOOL isAnchor;
|
|
//TODO: 应该用一个新的控制器的 先发版吧
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|