2023-09-05 11:45:21 +08:00
|
|
|
//
|
|
|
|
// XPNewHomeItemCell.h
|
|
|
|
// YuMi
|
|
|
|
//
|
|
|
|
// Created by duoban on 2023/9/5.
|
|
|
|
//
|
|
|
|
|
|
|
|
#import <UIKit/UIKit.h>
|
2024-06-21 01:37:38 +08:00
|
|
|
@class PIHomeItemModel;
|
|
|
|
@class HomeRankAvatarModel;
|
2023-09-05 11:45:21 +08:00
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
|
|
|
|
@interface XPNewHomeItemCell : UICollectionViewCell
|
2024-06-21 01:37:38 +08:00
|
|
|
@property(nonatomic, strong) PIHomeItemModel *itemModel;
|
|
|
|
@property (nonatomic, copy) NSArray<HomeRankAvatarModel*> *rankAvatarsModelArray;
|
|
|
|
@property (nonatomic, copy) void(^didTapRankArea)(void);
|
2025-05-15 16:24:43 +08:00
|
|
|
- (void)setCellWith:(NSIndexPath *)indexPath;
|
2023-09-05 11:45:21 +08:00
|
|
|
@end
|
|
|
|
|
|
|
|
NS_ASSUME_NONNULL_END
|