| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- //
- // PayTypeVC.h
- // IBOSS
- //
- // Created by Dongke on 16/1/20.
- // Copyright © 2017年 沈阳东科云信软件有限公司. All rights reserved.
- //
- // 功能描述:收款方式控制器
- #import "BaseViewController.h"
- #import "PayTypeDelegate.h"
- @interface PayTypeVC : BaseViewController<UISearchBarDelegate,UITableViewDataSource,UITableViewDelegate>
- /**
- 搜索数组
- */
- @property (strong) NSMutableArray *arrSearchData;
- /**
- 过滤器数组
- */
- @property (strong) NSMutableArray *arrFilterData;
- /**
- 收款方式数组
- */
- @property (strong,nonatomic) NSMutableArray * arrTextModels;
- /**
- 下载管理器
- */
- @property (nonatomic,strong) ASIDownManager *mDownManager;
- /**
- 搜索栏
- */
- @property (strong) IBOutlet UISearchBar *searchBar;
- /**
- table view
- */
- @property (strong) UITableView *tableView;
- /**
- 代理
- */
- @property (nonatomic, assign) id <PayTypeDelegate> payDelegate;
- @end
|