PayTypeVC.h 909 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. //
  2. // PayTypeVC.h
  3. // IBOSS
  4. //
  5. // Created by Dongke on 16/1/20.
  6. // Copyright © 2017年 沈阳东科云信软件有限公司. All rights reserved.
  7. //
  8. // 功能描述:收款方式控制器
  9. #import "BaseViewController.h"
  10. #import "PayTypeDelegate.h"
  11. @interface PayTypeVC : BaseViewController<UISearchBarDelegate,UITableViewDataSource,UITableViewDelegate>
  12. /**
  13. 搜索数组
  14. */
  15. @property (strong) NSMutableArray *arrSearchData;
  16. /**
  17. 过滤器数组
  18. */
  19. @property (strong) NSMutableArray *arrFilterData;
  20. /**
  21. 收款方式数组
  22. */
  23. @property (strong,nonatomic) NSMutableArray * arrTextModels;
  24. /**
  25. 下载管理器
  26. */
  27. @property (nonatomic,strong) ASIDownManager *mDownManager;
  28. /**
  29. 搜索栏
  30. */
  31. @property (strong) IBOutlet UISearchBar *searchBar;
  32. /**
  33. table view
  34. */
  35. @property (strong) UITableView *tableView;
  36. /**
  37. 代理
  38. */
  39. @property (nonatomic, assign) id <PayTypeDelegate> payDelegate;
  40. @end