SearchBaseVC.h 1010 B

1234567891011121314151617181920212223242526272829303132
  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 (nonatomic, copy) NSString * IsBViewHidden;
  20. @property (copy, nonatomic) void(^cancelBlock)(void);
  21. @property (copy, nonatomic) void(^searchBlock)(NSString * text);
  22. @property (strong, nonatomic) UILabel * lineL;
  23. @property (nonatomic, strong) InfoSearchView *topNavSearch;
  24. @property (nonatomic, assign) HistorySearchType historySearchType;
  25. @end
  26. NS_ASSUME_NONNULL_END