BogoSearchTableHeadView.h 497 B

123456789101112131415161718192021
  1. //
  2. // BogoSearchTableHeadView.h
  3. // BuguLive
  4. //
  5. // Created by 宋晨光 on 2021/4/6.
  6. // Copyright © 2021 xfg. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface BogoSearchTableHeadView : UICollectionReusableView<UICollectionViewDataSource,UICollectionViewDelegate>
  11. @property(nonatomic, strong) UICollectionView *collectionView;
  12. @property(nonatomic, strong) UILabel *titleL;
  13. @property(nonatomic, strong) NSMutableArray *listArr;
  14. @end
  15. NS_ASSUME_NONNULL_END