12345678910111213141516171819202122232425 |
- //
- // SearchBaseVC.h
- // smartRhino
- //
- // Created by niuzhen on 2020/1/1.
- // Copyright © 2020 tederen. All rights reserved.
- //
- #import "BaseViewController.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface SearchBaseVC : BaseViewController
- @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) HistorySearchType historySearchType;
- @end
- NS_ASSUME_NONNULL_END
|