Files
peko-ios/YuMi/Modules/YMNewHome/View/CustomView/XPNewHomeItemCell.h

21 lines
501 B
C
Raw Normal View History

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);
- (void)setCellWith:(NSIndexPath *)indexPath;
2023-09-05 11:45:21 +08:00
@end
NS_ASSUME_NONNULL_END