Files
yinmeng-ios/xplan-ios/Main/Home/Protocol/XPHomeProtocol.h
2022-03-04 19:54:17 +08:00

24 lines
588 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;
@end
NS_ASSUME_NONNULL_END