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

26 lines
515 B
Objective-C

//
// MedalsWearingListCollectionViewCell.h
// YuMi
//
// Created by P on 2025/6/19.
//
#import <UIKit/UIKit.h>
@class MedalVo;
NS_ASSUME_NONNULL_BEGIN
@interface MedalsWearingListCollectionViewCell : UICollectionViewCell
+ (void)registerTo:(UICollectionView *)collectionView;
+ (instancetype)cellFor:(UICollectionView *)collectionView atIndexPath:(NSIndexPath *)index;
- (void)updateCell:(MedalVo *)medalModel;
// 可见性管理
- (void)willDisplay;
- (void)didEndDisplaying;
@end
NS_ASSUME_NONNULL_END