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 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 39 # s.frameworks = 'UIKit', 'MapKit'
40 40 # s.dependency 'AFNetworking', '~> 2.3'
41 41 s.dependency 'CNLiveNewTripartiteManagement/SDCycleScrollView'
... ...
CNLiveCServiceModule/Classes/Manager/CNLiveCServiceManagerBridge.h
... ... @@ -32,7 +32,6 @@ NS_ASSUME_NONNULL_BEGIN
32 32 + (instancetype) shareManager;
33 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 71 }
72 72 return nil;
73 73 }
74   -+ (UIViewController *)serviceVC{
75   - CNLiveServiceVC *vc = [[CNLiveServiceVC alloc] init];
76   - return vc;
77   -}
  74 +
78 75 @end
... ...