SearchViewController.h 791 B

123456789101112131415161718192021222324252627282930
  1. //
  2. // SearchViewController.h
  3. // AICity
  4. //
  5. // Created by 刘伟伟 on 2023/7/8.
  6. // Copyright © 2023 wei.z. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface SearchViewController : UIViewController
  11. @end
  12. @interface SearchTitCell : UICollectionViewCell
  13. @property (nonatomic, strong) void(^delBlock)(void);
  14. @end
  15. @interface SearchItemCell : UICollectionViewCell
  16. @property(nonatomic,strong)UILabel *nameLab;
  17. @end
  18. @interface FoundCell : UICollectionViewCell
  19. @property(nonatomic,strong)NSArray *hotkeyDataArr;
  20. @property (nonatomic, strong) void(^tapBlock)(NSString *str);
  21. @end
  22. @interface HotSearchCell : UICollectionViewCell
  23. @property(nonatomic,strong)NSArray *hotMoviesArr;
  24. @property (nonatomic, strong) void(^tapBlock)(int vid);
  25. @end
  26. NS_ASSUME_NONNULL_END