| 12345678910111213141516171819202122232425262728293031 |
- //
- // SettlementTypeVC.h
- // IBOSS
- //
- // Created by apple on 16/1/14.
- // Copyright © 2017年 沈阳东科云信软件有限公司. All rights reserved.
- //
- // 功能描述:收款方式视图控制器
- #import "BaseViewController.h"
- #import "SettlementTypeCell.h"
- #import "SettlementTypeProtocol.h"
- @interface SettlementTypeVC : BaseViewController<UISearchBarDelegate,UITableViewDataSource,UITableViewDelegate>
- /**
- 收款方式代理
- */
- @property (weak) id<SettlementTypeProtocol> sDelegate;
- /**
- 搜索结果数组
- */
- @property (strong) NSMutableArray *arrSearchData;
- /**
- 搜索结果过滤数组
- */
- @property (strong) NSMutableArray *arrFilterData;
- @end
|