Commit b0ec08254edefff690d3bdcbf3298a0f222d7e44
1 parent
74e1571c
no message
Showing
3 changed files
with
8 additions
and
1 deletions
CNLiveIntegralModule.podspec
CNLiveIntegralModule/Classes/Module/CNLiveIntegralService.m
| ... | ... | @@ -11,6 +11,7 @@ |
| 11 | 11 | #import "MJExtension.h" |
| 12 | 12 | |
| 13 | 13 | #import "CNLiveServices.h" |
| 14 | +#import "CNLiveManager.h" | |
| 14 | 15 | |
| 15 | 16 | // 任务列表 |
| 16 | 17 | #import "CNLiveTaskListController.h" |
| ... | ... | @@ -40,12 +41,13 @@ |
| 40 | 41 | |
| 41 | 42 | - (void)pushToTaskListViewController { |
| 42 | 43 | CNLiveTaskListController *vc = [[CNLiveTaskListController alloc]init]; |
| 44 | + [CNLivePageJumpManager pushViewController:vc]; | |
| 43 | 45 | } |
| 44 | 46 | |
| 45 | 47 | - (void)pushToTaskListViewController:(NSString *)isFrom{ |
| 46 | 48 | CNLiveTaskListController *vc = [[CNLiveTaskListController alloc]init]; |
| 47 | 49 | vc.isFrom = isFrom; |
| 48 | -// [CNLivePageJumpManager pushViewController:vc]; | |
| 50 | + [CNLivePageJumpManager pushViewController:vc]; | |
| 49 | 51 | } |
| 50 | 52 | |
| 51 | 53 | #pragma mark - 增加积分 | ... | ... |
Example/CNLiveIntegralModule.xcodeproj/project.pbxproj
| ... | ... | @@ -333,6 +333,7 @@ |
| 333 | 333 | "${BUILT_PRODUCTS_DIR}/CNLiveCommonClass/CNLiveCommonClass.framework", |
| 334 | 334 | "${BUILT_PRODUCTS_DIR}/CNLiveEnvironment/CNLiveEnvironment.framework", |
| 335 | 335 | "${BUILT_PRODUCTS_DIR}/CNLiveIntegralModule/CNLiveIntegralModule.framework", |
| 336 | + "${BUILT_PRODUCTS_DIR}/CNLiveManager/CNLiveManager.framework", | |
| 336 | 337 | "${BUILT_PRODUCTS_DIR}/CNLiveRequestBastKit/CNLiveRequestBastKit.framework", |
| 337 | 338 | "${BUILT_PRODUCTS_DIR}/CNLiveTripartiteManagement/CNLiveTripartiteManagement.framework", |
| 338 | 339 | "${BUILT_PRODUCTS_DIR}/CNLiveUserAgreementManager/CNLiveUserAgreementManager.framework", |
| ... | ... | @@ -352,6 +353,7 @@ |
| 352 | 353 | "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/CNLiveCommonClass.framework", |
| 353 | 354 | "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/CNLiveEnvironment.framework", |
| 354 | 355 | "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/CNLiveIntegralModule.framework", |
| 356 | + "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/CNLiveManager.framework", | |
| 355 | 357 | "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/CNLiveRequestBastKit.framework", |
| 356 | 358 | "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/CNLiveTripartiteManagement.framework", |
| 357 | 359 | "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/CNLiveUserAgreementManager.framework", | ... | ... |