SearchBaseVC.h 657 B

12345678910111213141516171819202122232425
  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 "BaseViewController.h"
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface SearchBaseVC : BaseViewController
  11. @property (strong, nonatomic) UICollectionView * collectionView;
  12. @property (strong, nonatomic) UITableView * tableView;
  13. @property (nonatomic, copy) NSString * searchText;
  14. @property (strong, nonatomic) UIView * noDataView;
  15. @property (nonatomic, strong) UILabel * noDataL;
  16. @property (strong, nonatomic) UIButton * cancelBtn;
  17. @property (nonatomic, assign) HistorySearchType historySearchType;
  18. @end
  19. NS_ASSUME_NONNULL_END