// // EPMomentListView.h // YuMi // // Created by AI on 2025-10-10. // #import #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