
主要变更: 1. 新增 EPMomentAPIHelper_Deprecated.h 和 EPMomentAPIHelper_Deprecated.m 文件,提供与旧版 Objective-C API 的兼容性。 2. 该文件已被 EPMomentAPISwiftHelper.swift 替代,保留仅供参考,后续可删除。 3. 更新 EPMomentListView 以使用新的 Swift 版本 API,提升代码的现代化和类型安全。 此更新旨在确保旧版 API 的平滑过渡,同时鼓励使用新的 Swift 实现。
47 lines
1.1 KiB
Objective-C
47 lines
1.1 KiB
Objective-C
//
|
|
// EPMomentListView.h
|
|
// YuMi
|
|
//
|
|
// Created by AI on 2025-10-10.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@class EPMomentAPISwiftHelper;
|
|
@class MomentsInfoModel;
|
|
|
|
/// 推荐/我的动态列表数据源类型
|
|
typedef NS_ENUM(NSInteger, EPMomentListSourceType) {
|
|
EPMomentListSourceTypeRecommend = 0,
|
|
EPMomentListSourceTypeMine = 1
|
|
};
|
|
|
|
/// 承载 Moments 列表与分页刷新的视图
|
|
@interface EPMomentListView : UIView
|
|
|
|
/// 当前数据源(外部可读)
|
|
@property (nonatomic, strong, readonly) NSArray *rawList;
|
|
|
|
/// 列表类型:推荐 / 我的
|
|
@property (nonatomic, assign) EPMomentListSourceType sourceType;
|
|
|
|
/// 外部可设置:当某一项被点击
|
|
@property (nonatomic, copy) void (^onSelectMoment)(NSInteger index);
|
|
|
|
/// 重新加载(刷新到第一页)
|
|
- (void)reloadFirstPage;
|
|
|
|
/// 使用本地数组模式显示动态(禁用分页加载)
|
|
/// @param dynamicInfo 本地动态数组
|
|
/// @param refreshCallback 下拉刷新回调(由外部重新获取数据)
|
|
- (void)loadWithDynamicInfo:(NSArray<MomentsInfoModel *> *)dynamicInfo
|
|
refreshCallback:(void(^)(void))refreshCallback;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|
|
|
|
|