33 lines
897 B
Objective-C
33 lines
897 B
Objective-C
//
|
|
// XPHomeProtocol.h
|
|
// xplan-ios
|
|
//
|
|
// Created by 冯硕 on 2021/11/29.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@protocol XPHomeProtocol <NSObject>
|
|
///首页推荐房间的
|
|
- (void)getHomeRecommendRoomListSuccess:(NSArray *)list state:(BOOL)state;
|
|
///首页推荐房间失败
|
|
- (void)getHomeRecommendRoomListFail:(NSString *)message state:(BOOL)state;
|
|
///请求更多个播房成功
|
|
- (void)getHomeMoreAnchorRoomListSuccess:(NSArray *)list;
|
|
///请求更多个播房失败
|
|
- (void)getHomeMoreAnchorRoomListFail:(NSString *)messag;
|
|
///获取派对推荐列表成功
|
|
- (void)getPartyRecommendRoomListSuccess:(NSArray *)list;
|
|
///获取派对数据失败
|
|
- (void)getPartyRecommendDataFail;
|
|
///获取发现新朋友列表成功
|
|
- (void)getNewFriendListSuccess:(NSArray *)list;
|
|
///获取发现新朋友列表失败
|
|
- (void)getNewFriendListFail;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|