FreezeReasonViewController.h 893 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. //
  2. // FreezeReasonViewController.h
  3. // IBOSS
  4. //
  5. // Created by 关宏厚 on 2020/4/30.
  6. // Copyright © 2020 elongtian. All rights reserved.
  7. //
  8. #import "BaseViewController.h"
  9. #define textFont [UIFont systemFontOfSize:14]
  10. @interface FreezeReasonViewController : BaseViewController<UISearchBarDelegate,UITableViewDataSource,UITableViewDelegate>
  11. /**
  12. 搜索数组
  13. */
  14. @property (strong,nonatomic) NSMutableArray *arrSearch;
  15. /**
  16. 过滤数组
  17. */
  18. @property (strong,nonatomic) NSMutableArray *arrFilter;
  19. /**
  20. 委托
  21. */
  22. @property (weak,nonatomic) id<InventoryGoodsDelegate> inventoryDelegate;
  23. /**
  24. UISearchBar对象
  25. */
  26. @property (nonatomic,strong)UISearchBar *searchBar;
  27. /**
  28. UITableView对象
  29. */
  30. @property (nonatomic,strong) UITableView *tableView;
  31. /**
  32. 请求对象
  33. */
  34. @property (nonatomic,strong) ASIDownManager *mDownManager;
  35. @property(nonatomic,assign) BOOL isPresentVc;
  36. @end