| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- //
- // FreezeReasonViewController.h
- // IBOSS
- //
- // Created by 关宏厚 on 2020/4/30.
- // Copyright © 2020 elongtian. All rights reserved.
- //
- #import "BaseViewController.h"
- #define textFont [UIFont systemFontOfSize:14]
- @interface FreezeReasonViewController : 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;
- @property(nonatomic,assign) BOOL isPresentVc;
- @end
|