更新 Podfile 以注释掉不再使用的 ZLCollectionViewFlowLayout 依赖,同时新增勋章相关功能,包括勋章使用、广场、排行和管理列表的 API 方法,新增 MedalsModel、MedalsPresenter 和 MedalsViewController 相关文件,保持代码结构一致性。新增勋章相关的 UI 组件和本地化字符串支持。
This commit is contained in:
21
YuMi/Modules/YMMine/View/Medals/MedalsCollectionViewCell.h
Normal file
21
YuMi/Modules/YMMine/View/Medals/MedalsCollectionViewCell.h
Normal file
@@ -0,0 +1,21 @@
|
||||
//
|
||||
// MedalsCollectionViewCell.h
|
||||
// YuMi
|
||||
//
|
||||
// Created by P on 2025/6/18.
|
||||
//
|
||||
|
||||
#import <UIKit/UIKit.h>
|
||||
@class MedalSeriesVo;
|
||||
NS_ASSUME_NONNULL_BEGIN
|
||||
|
||||
@interface MedalsCollectionViewCell : UICollectionViewCell
|
||||
|
||||
+ (void)registerTo:(UICollectionView *)collectionView;
|
||||
+ (instancetype)cellFor:(UICollectionView *)collectionView atIndexPath:(NSIndexPath *)index;
|
||||
|
||||
- (void)updateCell:(MedalSeriesVo *)model;
|
||||
|
||||
@end
|
||||
|
||||
NS_ASSUME_NONNULL_END
|
Reference in New Issue
Block a user