Commit c26acb0516626953aba66eea67c115ebb7b3f406

Authored by yanglingyu
1 parent e0bb715a

no message

CNLiveCServiceModule/Classes/Manager/CNLiveCServiceManagerBridge.h
@@ -12,7 +12,6 @@ typedef NS_ENUM(NSInteger , CNCServiceJumpType) { @@ -12,7 +12,6 @@ typedef NS_ENUM(NSInteger , CNCServiceJumpType) {
12 CNCServiceJumpTypeGoods, //商品详情页 12 CNCServiceJumpTypeGoods, //商品详情页
13 CNCServiceJumpTypeVideo //音频文件 13 CNCServiceJumpTypeVideo //音频文件
14 }; 14 };
15 -@class CNLiveServiceVC;  
16 @protocol CNLiveCServiceProtocol <NSObject> 15 @protocol CNLiveCServiceProtocol <NSObject>
17 16
18 /** 17 /**
@@ -33,7 +32,7 @@ NS_ASSUME_NONNULL_BEGIN @@ -33,7 +32,7 @@ NS_ASSUME_NONNULL_BEGIN
33 + (instancetype) shareManager; 32 + (instancetype) shareManager;
34 + (UIViewController *)viewControllerFromView:(UIView *)view; 33 + (UIViewController *)viewControllerFromView:(UIView *)view;
35 34
36 -+ (CNLiveServiceVC *)serviceVC; 35 ++ (UIViewController *)serviceVC;
37 /** 36 /**
38 * 服务号跳转 37 * 服务号跳转
39 * 38 *
CNLiveCServiceModule/Classes/Manager/CNLiveCServiceManagerBridge.m
@@ -71,7 +71,7 @@ @@ -71,7 +71,7 @@
71 } 71 }
72 return nil; 72 return nil;
73 } 73 }
74 -+ (CNLiveServiceVC *)serviceVC{ 74 ++ (UIViewController *)serviceVC{
75 CNLiveServiceVC *vc = [[CNLiveServiceVC alloc] init]; 75 CNLiveServiceVC *vc = [[CNLiveServiceVC alloc] init];
76 return vc; 76 return vc;
77 } 77 }