SearchBaseVC.h 956 B

12345678910111213141516171819202122232425262728293031
  1. //
  2. // SearchBaseVC.h
  3. // smartRhino
  4. //
  5. // Created by niuzhen on 2020/1/1.
  6. // Copyright © 2020 tederen. All rights reserved.
  7. //
  8. #import "SearchBaseVC.h"
  9. #import "InfoSearchView.h"
  10. NS_ASSUME_NONNULL_BEGIN
  11. @interface SearchBaseVC : UIViewController
  12. @property (strong, nonatomic) UICollectionView * collectionView;
  13. @property (strong, nonatomic) UITableView * tableView;
  14. @property (nonatomic, copy) NSString * searchText;
  15. @property (strong, nonatomic) UIView * noDataView;
  16. @property (nonatomic, strong) UILabel * noDataL;
  17. @property (strong, nonatomic) UIButton * cancelBtn;
  18. @property (nonatomic, assign) BOOL IsAddUser;
  19. @property (copy, nonatomic) void(^cancelBlock)(void);
  20. @property (copy, nonatomic) void(^searchBlock)(NSString * text);
  21. @property (strong, nonatomic) UILabel * lineL;
  22. @property (nonatomic, strong) InfoSearchView *topNavSearch;
  23. @property (nonatomic, assign) HistorySearchType historySearchType;
  24. @end
  25. NS_ASSUME_NONNULL_END