19 lines
417 B
C
19 lines
417 B
C
|
|
//
|
||
|
|
// QXSearchHeaderView.h
|
||
|
|
// QXLive
|
||
|
|
//
|
||
|
|
// Created by 启星 on 2025/5/8.
|
||
|
|
//
|
||
|
|
|
||
|
|
#import <UIKit/UIKit.h>
|
||
|
|
|
||
|
|
NS_ASSUME_NONNULL_BEGIN
|
||
|
|
|
||
|
|
@interface QXSearchHeaderView : UICollectionReusableView
|
||
|
|
+ (NSString *)headerViewIdentifier ;
|
||
|
|
+ (instancetype)headerViewWithCollectionView:(UICollectionView *)collectionView forIndexPath:(NSIndexPath *)indexPath;
|
||
|
|
@property (nonatomic,strong)NSString *title;
|
||
|
|
@end
|
||
|
|
|
||
|
|
NS_ASSUME_NONNULL_END
|