我的模块的我的页面
This commit is contained in:
24
xplan-ios/Main/Mine/Protocol/XPMineProtocol.h
Normal file
24
xplan-ios/Main/Mine/Protocol/XPMineProtocol.h
Normal 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
|
Reference in New Issue
Block a user