
主要变更: 1. 移除 UITableView,改为使用 EPMomentListView 以简化数据展示和交互。 2. 添加顶部固定文案 UILabel,提升用户体验。 3. 通过 EPMomentAPIHelper 统一管理 Moments 列表 API 请求,优化数据加载逻辑。 4. 更新 UI 约束,确保布局适配不同屏幕。 此重构旨在提升代码可维护性和用户界面的一致性。
35 lines
678 B
Objective-C
35 lines
678 B
Objective-C
//
|
|
// EPMomentListView.h
|
|
// YuMi
|
|
//
|
|
// Created by AI on 2025-10-10.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
#import "EPMomentAPIHelper.h"
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@class MomentsInfoModel;
|
|
|
|
/// 承载 Moments 列表与分页刷新的视图
|
|
@interface EPMomentListView : UIView
|
|
|
|
/// 当前数据源(外部可读)
|
|
@property (nonatomic, strong, readonly) NSArray *rawList;
|
|
|
|
/// 列表类型:推荐 / 我的
|
|
@property (nonatomic, assign) EPMomentListSourceType sourceType;
|
|
|
|
/// 外部可设置:当某一项被点击
|
|
@property (nonatomic, copy) void (^onSelectMoment)(NSInteger index);
|
|
|
|
/// 重新加载(刷新到第一页)
|
|
- (void)reloadFirstPage;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|
|
|
|
|