26 lines
656 B
Objective-C
26 lines
656 B
Objective-C
//
|
|
// XPGiftWeekStarCollectionViewCell.h
|
|
// xplan-ios
|
|
//
|
|
// Created by 冯硕 on 2022/6/14.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
@class XPGiftWeekStarCollectionViewCell, GiftInfoModel;
|
|
@protocol XPGiftWeekStarCollectionViewCellDelegate <NSObject>
|
|
|
|
- (void)xPGiftWeekStarCollectionViewCell:(XPGiftWeekStarCollectionViewCell *)view didSelectGift:(GiftInfoModel *)giftInfo;
|
|
|
|
@end
|
|
|
|
@interface XPGiftWeekStarCollectionViewCell : UICollectionViewCell
|
|
///周星礼物
|
|
@property (nonatomic,strong) NSArray *weekStarGiftList;
|
|
///代理
|
|
@property (nonatomic,weak) id<XPGiftWeekStarCollectionViewCellDelegate> delegate;
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|