Commit 4a36f72c99ab076fa323a62fc3c0f75c78998350

Authored by yanglingyu
1 parent c26acb05

no message

CNLiveCServiceModule.podspec
@@ -35,7 +35,7 @@ TODO: Add long description of the pod here. @@ -35,7 +35,7 @@ TODO: Add long description of the pod here.
35 s.resources = 'CNLiveCServiceModule/Assets/CNServiceBundle.bundle' 35 s.resources = 'CNLiveCServiceModule/Assets/CNServiceBundle.bundle'
36 36
37 37
38 - s.public_header_files = 'Pod/Classes/Manager/*.h' 38 + s.public_header_files = ['Pod/Classes/Manager/*.h','Pod/Classes/ViewController/*.h']
39 # s.frameworks = 'UIKit', 'MapKit' 39 # s.frameworks = 'UIKit', 'MapKit'
40 # s.dependency 'AFNetworking', '~> 2.3' 40 # s.dependency 'AFNetworking', '~> 2.3'
41 s.dependency 'CNLiveNewTripartiteManagement/SDCycleScrollView' 41 s.dependency 'CNLiveNewTripartiteManagement/SDCycleScrollView'
CNLiveCServiceModule/Classes/Manager/CNLiveCServiceManagerBridge.h
@@ -32,7 +32,6 @@ NS_ASSUME_NONNULL_BEGIN @@ -32,7 +32,6 @@ NS_ASSUME_NONNULL_BEGIN
32 + (instancetype) shareManager; 32 + (instancetype) shareManager;
33 + (UIViewController *)viewControllerFromView:(UIView *)view; 33 + (UIViewController *)viewControllerFromView:(UIView *)view;
34 34
35 -+ (UIViewController *)serviceVC;  
36 /** 35 /**
37 * 服务号跳转 36 * 服务号跳转
38 * 37 *
CNLiveCServiceModule/Classes/Manager/CNLiveCServiceManagerBridge.m
@@ -71,8 +71,5 @@ @@ -71,8 +71,5 @@
71 } 71 }
72 return nil; 72 return nil;
73 } 73 }
74 -+ (UIViewController *)serviceVC{  
75 - CNLiveServiceVC *vc = [[CNLiveServiceVC alloc] init];  
76 - return vc;  
77 -} 74 +
78 @end 75 @end