123456789101112131415161718192021222324 |
- //
- // SearchTabBaseVC.h
- // smartRhino
- //
- // Created by niuzhen on 2020/4/8.
- // Copyright © 2020 tederen. All rights reserved.
- //
- #import "BaseViewController.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface SearchTabBaseVC : 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
|