31 lines
451 B
Objective-C
31 lines
451 B
Objective-C
//
|
|
// MedalsCyclePagerCell.h
|
|
// YuMi
|
|
//
|
|
// Created by P on 2025/1/7.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
@class MedalVo;
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface MedalsCyclePagerCell : UICollectionViewCell
|
|
|
|
- (void)updateCell:(MedalVo *)model;
|
|
|
|
/**
|
|
* 当 cell 将要显示时调用
|
|
* 用于恢复 mp4 播放
|
|
*/
|
|
- (void)willDisplay;
|
|
|
|
/**
|
|
* 当 cell 结束显示时调用
|
|
* 用于暂停 mp4 播放
|
|
*/
|
|
- (void)didEndDisplaying;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|