20 lines
465 B
Objective-C
20 lines
465 B
Objective-C
//
|
|
// XPHomeSearchViewController.h
|
|
// xplan-ios
|
|
//
|
|
// Created by 冯硕 on 2021/11/29.
|
|
//
|
|
|
|
#import "MvpViewController.h"
|
|
#import <JXCategoryView/JXCategoryListContainerView.h>
|
|
#import "XPSearchListTableViewCell.h"
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
@interface XPHomeSearchViewController : MvpViewController<JXCategoryListContentViewDelegate>
|
|
///搜索的类型
|
|
@property (nonatomic,assign) SearchType type;
|
|
- (void)searchText:(NSString *)text;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|