1234567891011121314151617181920212223242526272829303132 |
- //
- // SearchBaseVC.h
- // smartRhino
- //
- // Created by niuzhen on 2020/1/1.
- // Copyright © 2020 tederen. All rights reserved.
- //
- #import "SearchBaseVC.h"
- #import "InfoSearchView.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface SearchBaseVC : UIViewController
- @property (strong, nonatomic) UICollectionView * collectionView;
- @property (strong, nonatomic) UITableView * tableView;
- @property (nonatomic, copy) NSString * searchText;
- @property (strong, nonatomic) UIView * noDataView;
- @property (nonatomic, strong) UILabel * noDataL;
- @property (strong, nonatomic) UIButton * cancelBtn;
- @property (nonatomic, assign) BOOL IsAddUser;
- @property (nonatomic, copy) NSString * IsBViewHidden;
- @property (copy, nonatomic) void(^cancelBlock)(void);
- @property (copy, nonatomic) void(^searchBlock)(NSString * text);
- @property (strong, nonatomic) UILabel * lineL;
- @property (nonatomic, strong) InfoSearchView *topNavSearch;
- @property (nonatomic, assign) HistorySearchType historySearchType;
- @end
- NS_ASSUME_NONNULL_END
|