| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- //
- // PropsUseVC.h
- // IBOSS
- //
- // Created by 关宏厚 on 2019/9/16.
- // Copyright © 2019 elongtian. All rights reserved.
- //
- #import "BaseViewController.h"
- #import "BaseIDAndNameProtocol.h"
- @interface PropsUseVC : BaseViewController <UISearchBarDelegate,UITableViewDataSource,UITableViewDelegate>
- /**
- 查询数据
- */
- @property (strong,nonatomic) NSMutableArray *arrSearch;
- @property (strong,nonatomic) NSMutableArray *propsList;
- @property (nonatomic,weak) id<BaseIDAndNameProtocol> bDelegate;
- /**
- 从查询数据过滤数据
- */
- @property (strong,nonatomic) NSMutableArray *arrFilter;
- /**
- 是否是调用presentViewController标示
- */
- @property (assign,nonatomic) BOOL isPresentViewFlg;
- /**
- 类型
- */
- @property (assign,nonatomic) baseIdAndName showDialogViewTag;
- /**
- 查询过滤
- */
- @property (nonatomic,strong) UISearchBar *searchBar;
- /**
- UITableView
- */
- @property (nonatomic,strong) UITableView *tableView;
- @end
|