29 lines
576 B
Objective-C
29 lines
576 B
Objective-C
//
|
|
// XPMomentListViewController.h
|
|
// xplan-ios
|
|
//
|
|
// Created by XY on 2023/2/16.
|
|
//
|
|
|
|
#import "MvpViewController.h"
|
|
#import <JXCategoryView/JXCategoryListContainerView.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
typedef NS_ENUM(NSUInteger, XPMomentListType) {
|
|
/// 推荐
|
|
XPMomentListRecommend,
|
|
/// 最新
|
|
XPMomentListTypeLatest,
|
|
/// 关注
|
|
XPMomentListTypeAttent,
|
|
};
|
|
|
|
@interface XPMomentListViewController : MvpViewController<JXCategoryListContentViewDelegate>
|
|
/// 列表类型
|
|
@property (nonatomic, assign) XPMomentListType listType;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|