27 lines
504 B
Plaintext
27 lines
504 B
Plaintext
//
|
||
// NewMomentCell.h
|
||
// YuMi
|
||
//
|
||
// Created by AI on 2025-10-09.
|
||
// Copyright © 2025 YuMi. All rights reserved.
|
||
//
|
||
|
||
#import <UIKit/UIKit.h>
|
||
|
||
@class MomentsInfoModel;
|
||
@class SDPhotoBrowser;
|
||
|
||
NS_ASSUME_NONNULL_BEGIN
|
||
|
||
/// 新的动态 Cell(卡片式设计)
|
||
/// 完全不同于原 XPMomentsCell 的列表式设计
|
||
@interface EPMomentCell : UITableViewCell
|
||
|
||
/// 配置 Cell 数据
|
||
/// @param model 动态数据模型
|
||
- (void)configureWithModel:(MomentsInfoModel *)model;
|
||
|
||
@end
|
||
|
||
NS_ASSUME_NONNULL_END
|