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

25 lines
495 B
Objective-C

//
// MedalsWearingControlCollectionViewCell.h
// YuMi
//
// Created by P on 2025/6/19.
//
#import <UIKit/UIKit.h>
@class MedalVo;
NS_ASSUME_NONNULL_BEGIN
@interface MedalsWearingControlCollectionViewCell : UICollectionViewCell
+ (void)registerTo:(UICollectionView *)collectionView;
+ (instancetype)cellFor:(UICollectionView *)collectionView atIndexPath:(NSIndexPath *)index;
- (void)updateVIPLevel:(NSInteger)level;
- (void)updateMedal:(MedalVo *)medalVo;
@end
NS_ASSUME_NONNULL_END