Files
peko-ios/YuMi/Modules/YMNewHome/View/Search/Presenter/XPHomeSearchPresenter.h

30 lines
595 B
C
Raw Normal View History

2023-07-14 18:50:55 +08:00
//
// YMHomeSearchPresenter.h
// YUMI
//
// Created by YUMI on 2021/11/29.
//
#import "BaseMvpPresenter.h"
@class UserInfoModel;
2023-07-14 18:50:55 +08:00
NS_ASSUME_NONNULL_BEGIN
@interface XPHomeSearchPresenter : BaseMvpPresenter
/// 搜索房间或者用户
/// @param key 搜索的关键字
/// @param type 类型 1 房间 2 用户
- (void)searchRoomList:(NSString *)key type:(NSString *)type;
/// 获取首页推荐列表
- (void)getHomeRecommendRoomList;
- (void)getFriends:(void(^)(NSArray <UserInfoModel *>*users))success
failure:(void(^)(NSError *error))failure;
2023-07-14 18:50:55 +08:00
@end
NS_ASSUME_NONNULL_END