我的模块的我的页面

This commit is contained in:
fengshuo
2021-09-16 19:30:22 +08:00
parent 92b97c4747
commit 2c6b42a6f0
73 changed files with 1726 additions and 10 deletions

View File

@@ -0,0 +1,24 @@
//
// XPMineProtocol.h
// xplan-ios
//
// Created by 冯硕 on 2021/9/16.
//
#import <Foundation/Foundation.h>
NS_ASSUME_NONNULL_BEGIN
@class XPMineItemModel, UserInfoModel;
@protocol XPMineProtocol <NSObject>
/// 获取赛事模块的items
/// @param matchItems 数据源
- (void)onGetMatchItemsSuccess:(NSArray<XPMineItemModel *> *)matchItems;
/// 获取普通的选项
/// @param matchItems 数据源
- (void)onGetNormalItemsSuccess:(NSArray<XPMineItemModel *> *)matchItems;
///获取用户信息成功
- (void)onGetUserInfoSuccess:(UserInfoModel *)userInfo;
@end
NS_ASSUME_NONNULL_END