PropsUseVC.h 942 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. //
  2. // PropsUseVC.h
  3. // IBOSS
  4. //
  5. // Created by 关宏厚 on 2019/9/16.
  6. // Copyright © 2019 elongtian. All rights reserved.
  7. //
  8. #import "BaseViewController.h"
  9. #import "BaseIDAndNameProtocol.h"
  10. @interface PropsUseVC : BaseViewController <UISearchBarDelegate,UITableViewDataSource,UITableViewDelegate>
  11. /**
  12. 查询数据
  13. */
  14. @property (strong,nonatomic) NSMutableArray *arrSearch;
  15. @property (strong,nonatomic) NSMutableArray *propsList;
  16. @property (nonatomic,weak) id<BaseIDAndNameProtocol> bDelegate;
  17. /**
  18. 从查询数据过滤数据
  19. */
  20. @property (strong,nonatomic) NSMutableArray *arrFilter;
  21. /**
  22. 是否是调用presentViewController标示
  23. */
  24. @property (assign,nonatomic) BOOL isPresentViewFlg;
  25. /**
  26. 类型
  27. */
  28. @property (assign,nonatomic) baseIdAndName showDialogViewTag;
  29. /**
  30. 查询过滤
  31. */
  32. @property (nonatomic,strong) UISearchBar *searchBar;
  33. /**
  34. UITableView
  35. */
  36. @property (nonatomic,strong) UITableView *tableView;
  37. @end