BogoSearchListView.h 554 B

1234567891011121314151617181920212223242526
  1. //
  2. // BogoSearchTableView.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. #import "BogoSearchTableHeadView.h"
  10. #import "NewestItemCell.h"
  11. NS_ASSUME_NONNULL_BEGIN
  12. @interface BogoSearchListView : UIView<UICollectionViewDelegate,UICollectionViewDataSource>
  13. @property(nonatomic, strong) UICollectionView *collectionView;
  14. @property(nonatomic, strong) BogoSearchTableHeadView *headView;
  15. @property(nonatomic, strong) NSMutableArray *listArr;
  16. @end
  17. NS_ASSUME_NONNULL_END