Files
peko-ios/YuMi/Modules/YMMine/View/Medals/MedalsCollectionViewCell.h

22 lines
433 B
Objective-C

//
// 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