Commit 5bdd3e113d0b61f6a21a31d4a3429568768d0749
1 parent
7f46d610
提交0.0.1
Showing
4 changed files
with
48 additions
and
0 deletions
CNLiveOrganizationValidationModule.podspec
CNLiveOrganizationValidationModule/Classes/CNLiveOrganizationValidationModule/Service/CNLiveBOrganizationValidattionService.h
0 → 100644
| 1 | +// | |
| 2 | +// CNLiveBOrganizationValidattionService.h | |
| 3 | +// AFNetworking | |
| 4 | +// | |
| 5 | +// Created by 梁星国 on 2020/4/15. | |
| 6 | +// | |
| 7 | + | |
| 8 | +#import <Foundation/Foundation.h> | |
| 9 | +#import "CNLiveBOrganizationValidationProtocol.h" | |
| 10 | + | |
| 11 | +NS_ASSUME_NONNULL_BEGIN | |
| 12 | + | |
| 13 | +@interface CNLiveBOrganizationValidattionService : NSObject | |
| 14 | + | |
| 15 | +@end | |
| 16 | + | |
| 17 | +NS_ASSUME_NONNULL_END | ... | ... |
CNLiveOrganizationValidationModule/Classes/CNLiveOrganizationValidationModule/Service/CNLiveBOrganizationValidattionService.m
0 → 100644
| 1 | +// | |
| 2 | +// CNLiveBOrganizationValidattionService.m | |
| 3 | +// AFNetworking | |
| 4 | +// | |
| 5 | +// Created by 梁星国 on 2020/4/15. | |
| 6 | +// | |
| 7 | + | |
| 8 | +#import "CNLiveBOrganizationValidattionService.h" | |
| 9 | + | |
| 10 | +#import "CNLiveBAgreementCommitFinishController.h" | |
| 11 | +#import "CNLiveBAgreementContentController.h" | |
| 12 | +#import "CNLiveBOrganizationValidattionController.h" | |
| 13 | + | |
| 14 | +@interface CNLiveBOrganizationValidattionService()<CNLiveBOrganizationValidationProtocol> | |
| 15 | + | |
| 16 | + | |
| 17 | + | |
| 18 | +@end | |
| 19 | + | |
| 20 | +@implementation CNLiveBOrganizationValidattionService | |
| 21 | + | |
| 22 | +- (UIViewController *)getOrganizationValidationController:(NSDictionary *)params { | |
| 23 | + | |
| 24 | + CNLiveBOrganizationValidattionController *VC = [[CNLiveBOrganizationValidattionController alloc]init]; | |
| 25 | + return VC; | |
| 26 | +} | |
| 27 | + | |
| 28 | +@end | ... | ... |
Example/CNLiveOrganizationValidationModule.xcodeproj/project.pbxproj
| ... | ... | @@ -361,6 +361,7 @@ |
| 361 | 361 | "${BUILT_PRODUCTS_DIR}/CNLiveEnvironment/CNLiveEnvironment.framework", |
| 362 | 362 | "${BUILT_PRODUCTS_DIR}/CNLiveICloudPicker/CNLiveICloudPicker.framework", |
| 363 | 363 | "${BUILT_PRODUCTS_DIR}/CNLiveImagePickerController/CNLiveImagePickerController.framework", |
| 364 | + "${BUILT_PRODUCTS_DIR}/CNLiveModuleServiceProtocols/CNLiveModuleServiceProtocols.framework", | |
| 364 | 365 | "${BUILT_PRODUCTS_DIR}/CNLiveOrganizationValidationModule/CNLiveOrganizationValidationModule.framework", |
| 365 | 366 | "${BUILT_PRODUCTS_DIR}/CNLiveRequestBastKit/CNLiveRequestBastKit.framework", |
| 366 | 367 | "${BUILT_PRODUCTS_DIR}/CNLiveTripartiteManagement/CNLiveTripartiteManagement.framework", |
| ... | ... | @@ -405,6 +406,7 @@ |
| 405 | 406 | "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/CNLiveEnvironment.framework", |
| 406 | 407 | "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/CNLiveICloudPicker.framework", |
| 407 | 408 | "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/CNLiveImagePickerController.framework", |
| 409 | + "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/CNLiveModuleServiceProtocols.framework", | |
| 408 | 410 | "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/CNLiveOrganizationValidationModule.framework", |
| 409 | 411 | "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/CNLiveRequestBastKit.framework", |
| 410 | 412 | "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/CNLiveTripartiteManagement.framework", | ... | ... |