更新 Podfile 以注释掉不再使用的 ZLCollectionViewFlowLayout 依赖,同时新增勋章相关功能,包括勋章使用、广场、排行和管理列表的 API 方法,新增 MedalsModel、MedalsPresenter 和 MedalsViewController 相关文件,保持代码结构一致性。新增勋章相关的 UI 组件和本地化字符串支持。

This commit is contained in:
edwinQQQ
2025-06-18 16:28:13 +08:00
parent 8c0276a208
commit 89d9b57dea
41 changed files with 1395 additions and 62 deletions

View 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