26 lines
668 B
Objective-C
26 lines
668 B
Objective-C
//
|
|
// YMHomeProtocol.h
|
|
// YUMI
|
|
//
|
|
// Created by YUMI 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)getHomePersonalRoomListSuccess:(NSArray *)list;
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|