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