34 lines
729 B
Objective-C
34 lines
729 B
Objective-C
//
|
|
// XPRoomSearchRecordViewController.h
|
|
// xplan-ios
|
|
//
|
|
// Created by GreenLand on 2022/9/5.
|
|
//
|
|
|
|
#import "MvpViewController.h"
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@protocol XPRoomSearchRecordViewControllerDelegate <NSObject>
|
|
|
|
///搜索
|
|
- (void)xPRoomSearchRecordViewControllerSearchWithWord:(NSString *)word;
|
|
|
|
///点击了大家都在搜
|
|
- (void)xPRoomSearchRecordViewControllerEveryoneSearch:(NSString *)word sid:(NSString *)sid;
|
|
|
|
@end
|
|
|
|
@interface XPRoomSearchRecordViewController : MvpViewController
|
|
|
|
@property (nonatomic, weak) id<XPRoomSearchRecordViewControllerDelegate> delegate;
|
|
/// 保存搜索记录
|
|
- (void)storeSearchRecord:(NSString *)record;
|
|
|
|
///更新搜索记录
|
|
- (void)updateSearchRecord;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|