22 lines
438 B
Objective-C
22 lines
438 B
Objective-C
//
|
|
// MedalsWearingControlCollectionViewCell.h
|
|
// YuMi
|
|
//
|
|
// Created by P on 2025/6/19.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface MedalsWearingControlCollectionViewCell : UICollectionViewCell
|
|
|
|
+ (void)registerTo:(UICollectionView *)collectionView;
|
|
+ (instancetype)cellFor:(UICollectionView *)collectionView atIndexPath:(NSIndexPath *)index;
|
|
|
|
- (void)updateVIPLevel:(NSInteger)level;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|