| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- //
- // InvoiceStyleViewController.h
- // IBOSS
- //
- // Created by 关宏厚 on 2020/4/30.
- // Copyright © 2020 elongtian. All rights reserved.
- //
- #import "BaseViewController.h"
- #import "InventoryGoodsDelegate.h"
- #define textFont [UIFont systemFontOfSize:14]
- @interface InvoiceStyleViewController : BaseViewController<UISearchBarDelegate,UITableViewDataSource,UITableViewDelegate>
- /**
- 搜索数组
- */
- @property (strong,nonatomic) NSMutableArray *arrSearch;
- /**
- 过滤数组
- */
- @property (strong,nonatomic) NSMutableArray *arrFilter;
- /**
- 委托
- */
- @property (weak,nonatomic) id<InventoryGoodsDelegate> inventoryDelegate;
- /**
- UISearchBar对象
- */
- @property (nonatomic,strong)UISearchBar *searchBar;
- /**
- UITableView对象
- */
- @property (nonatomic,strong) UITableView *tableView;
- /**
- 请求对象
- */
- @property (nonatomic,strong) ASIDownManager *mDownManager;
- @end
|