CNLiveMineService.m 1.04 KB
//
//  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