Commit 85bfb9b8535b914566ae9f58da7f6c6a8f38dd0c
1 parent
2b395a0a
no message
Showing
2 changed files
with
4 additions
and
2 deletions
CNLiveMineModule/Classes/Module/CNLiveMineService.m
| ... | ... | @@ -22,14 +22,14 @@ |
| 22 | 22 | |
| 23 | 23 | - (void)pushToMineViewController { |
| 24 | 24 | UIViewController *vc = [[UIViewController alloc]init]; |
| 25 | -// [XWPageJumpManager pushViewController:vc]; | |
| 25 | + [CNLivePageJumpManager pushViewController:vc]; | |
| 26 | 26 | } |
| 27 | 27 | |
| 28 | 28 | - (void)presentToFoundController { |
| 29 | 29 | UIViewController *vc = [[UIViewController alloc]init]; |
| 30 | 30 | vc.modalPresentationStyle = UIModalPresentationOverFullScreen; |
| 31 | 31 | vc.hidesBottomBarWhenPushed = YES; |
| 32 | -// [XWPageJumpManager presentViewController:vc]; | |
| 32 | + [CNLivePageJumpManager presentViewController:vc]; | |
| 33 | 33 | } |
| 34 | 34 | |
| 35 | 35 | @end | ... | ... |
Example/CNLiveMineModule.xcodeproj/project.pbxproj
| ... | ... | @@ -304,11 +304,13 @@ |
| 304 | 304 | "${PODS_ROOT}/Target Support Files/Pods-CNLiveMineModule_Example/Pods-CNLiveMineModule_Example-frameworks.sh", |
| 305 | 305 | "${BUILT_PRODUCTS_DIR}/CNLiveBeeHive/CNLiveBeeHive.framework", |
| 306 | 306 | "${BUILT_PRODUCTS_DIR}/CNLiveMineModule/CNLiveMineModule.framework", |
| 307 | + "${BUILT_PRODUCTS_DIR}/CNLiveServices/CNLiveServices.framework", | |
| 307 | 308 | ); |
| 308 | 309 | name = "[CP] Embed Pods Frameworks"; |
| 309 | 310 | outputPaths = ( |
| 310 | 311 | "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/CNLiveBeeHive.framework", |
| 311 | 312 | "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/CNLiveMineModule.framework", |
| 313 | + "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/CNLiveServices.framework", | |
| 312 | 314 | ); |
| 313 | 315 | runOnlyForDeploymentPostprocessing = 0; |
| 314 | 316 | shellPath = /bin/sh; | ... | ... |