21 lines
460 B
Plaintext
21 lines
460 B
Plaintext
//
|
||
// EPMomentViewController.h
|
||
// YuMi
|
||
//
|
||
// Created by AI on 2025-10-09.
|
||
// Copyright © 2025 YuMi. All rights reserved.
|
||
//
|
||
|
||
#import <UIKit/UIKit.h>
|
||
|
||
NS_ASSUME_NONNULL_BEGIN
|
||
|
||
/// 新的动态页面控制器
|
||
/// 采用卡片式布局,完全不同于原 XPMomentsViewController
|
||
/// 注意:直接继承 UIViewController,不继承 BaseViewController(避免依赖链)
|
||
@interface EPMomentViewController : UIViewController
|
||
|
||
@end
|
||
|
||
NS_ASSUME_NONNULL_END
|