22 lines
404 B
Objective-C
22 lines
404 B
Objective-C
//
|
|
// LMWeekListHeaderView.h
|
|
// SweetParty
|
|
//
|
|
// Created by Xmac on 2024/8/7.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
typedef void(^selectGiftUpdateListBlock)(NSString *gid);
|
|
@interface LMWeekListHeaderView : UIView
|
|
|
|
@property (weak, nonatomic) IBOutlet UICollectionView *giftItemView;
|
|
|
|
@property (nonatomic, copy) selectGiftUpdateListBlock updateListBlock;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|