// // MedalsWearingControlCollectionViewCell.h // YuMi // // Created by P on 2025/6/19. // #import @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