CNLiveMineService.m
1.04 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
//
// CNLiveMineService.m
// CNLiveMineModule
//
// Created by 153993236@qq.com on 11/12/2019.
// Copyright (c) 2019 153993236@qq.com. All rights reserved.
//
#import "CNLiveMineService.h"
#import "CNLiveServices.h"
#import "CNLiveMineController.h"
#import "CNLiveUserInfoController.h"
@BeeHiveService(CNLiveMineServiceProtocol,CNLiveMineService)
@interface CNLiveMineService ()<CNLiveMineServiceProtocol>
@end
@implementation CNLiveMineService
// 我的
- (UIViewController *)getMineViewController {
return [CNLiveMineController new];
}
- (void)pushToMineViewController {
CNLiveMineController *vc = [[CNLiveMineController alloc]init];
// [CNLivePageJumpManager pushViewController:vc];
}
// 个人资料
- (UIViewController *)getUserInfoViewController {
return [CNLiveUserInfoController new];
}
- (void)pushToUserInfoViewController {
CNLiveUserInfoController *vc = [[CNLiveUserInfoController alloc]init];
// [CNLivePageJumpManager pushViewController:vc];
}
// 积分
// 目击者
// 订单
// 余额
// 我的收藏
// 设置
@end