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 12 CNCServiceJumpTypeGoods, //商品详情页
13 13 CNCServiceJumpTypeVideo //音频文件
14 14 };
15   -@class CNLiveServiceVC;
16 15 @protocol CNLiveCServiceProtocol <NSObject>
17 16  
18 17 /**
... ... @@ -33,7 +32,7 @@ NS_ASSUME_NONNULL_BEGIN
33 32 + (instancetype) shareManager;
34 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 71 }
72 72 return nil;
73 73 }
74   -+ (CNLiveServiceVC *)serviceVC{
  74 ++ (UIViewController *)serviceVC{
75 75 CNLiveServiceVC *vc = [[CNLiveServiceVC alloc] init];
76 76 return vc;
77 77 }
... ...