Commit 483472fcc4dc029bee4b436699c9e420b5241f38
1 parent
2d4985c7
no message
Showing
6 changed files
with
12 additions
and
4 deletions
CNLiveMineModule/Assets/CNLiveMineModule.xcassets/mine_code_more.imageset/mine_code_more@2x.png
CNLiveMineModule/Assets/CNLiveMineModule.xcassets/mine_code_more.imageset/mine_code_more@3x.png
CNLiveMineModule/Classes/Controller/CNLiveMineController.h
CNLiveMineModule/Classes/UserInfo/CNLiveUserInfoController.h
Example/CNLiveMineModule.xcodeproj/project.pbxproj
| ... | ... | @@ -229,7 +229,7 @@ |
| 229 | 229 | 6003F586195388D20070C39A /* Sources */, |
| 230 | 230 | 6003F587195388D20070C39A /* Frameworks */, |
| 231 | 231 | 6003F588195388D20070C39A /* Resources */, |
| 232 | - 7970BFE55EAFC7A3DDA56421 /* [CP] Embed Pods Frameworks */, | |
| 232 | + A78AB9505BFFB31040E09CB9 /* [CP] Embed Pods Frameworks */, | |
| 233 | 233 | ); |
| 234 | 234 | buildRules = ( |
| 235 | 235 | ); |
| ... | ... | @@ -320,7 +320,7 @@ |
| 320 | 320 | /* End PBXResourcesBuildPhase section */ |
| 321 | 321 | |
| 322 | 322 | /* Begin PBXShellScriptBuildPhase section */ |
| 323 | - 7970BFE55EAFC7A3DDA56421 /* [CP] Embed Pods Frameworks */ = { | |
| 323 | + A78AB9505BFFB31040E09CB9 /* [CP] Embed Pods Frameworks */ = { | |
| 324 | 324 | isa = PBXShellScriptBuildPhase; |
| 325 | 325 | buildActionMask = 2147483647; |
| 326 | 326 | files = ( |
| ... | ... | @@ -339,6 +339,7 @@ |
| 339 | 339 | "${BUILT_PRODUCTS_DIR}/CNLiveRequestBastKit/CNLiveRequestBastKit.framework", |
| 340 | 340 | "${BUILT_PRODUCTS_DIR}/CNLiveSettingModule/CNLiveSettingModule.framework", |
| 341 | 341 | "${BUILT_PRODUCTS_DIR}/CNLiveTripartiteManagement/CNLiveTripartiteManagement.framework", |
| 342 | + "${BUILT_PRODUCTS_DIR}/CNLiveUserAgreementManager/CNLiveUserAgreementManager.framework", | |
| 342 | 343 | "${BUILT_PRODUCTS_DIR}/CNLiveUserManagement/CNLiveUserManagement.framework", |
| 343 | 344 | "${BUILT_PRODUCTS_DIR}/JXCategoryView/JXCategoryView.framework", |
| 344 | 345 | "${BUILT_PRODUCTS_DIR}/MJExtension/MJExtension.framework", |
| ... | ... | @@ -346,6 +347,7 @@ |
| 346 | 347 | "${BUILT_PRODUCTS_DIR}/QMUIKit/QMUIKit.framework", |
| 347 | 348 | "${BUILT_PRODUCTS_DIR}/SDWebImage/SDWebImage.framework", |
| 348 | 349 | "${BUILT_PRODUCTS_DIR}/SGQRCode/SGQRCode.framework", |
| 350 | + "${BUILT_PRODUCTS_DIR}/YYKit/YYKit.framework", | |
| 349 | 351 | ); |
| 350 | 352 | name = "[CP] Embed Pods Frameworks"; |
| 351 | 353 | outputPaths = ( |
| ... | ... | @@ -361,6 +363,7 @@ |
| 361 | 363 | "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/CNLiveRequestBastKit.framework", |
| 362 | 364 | "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/CNLiveSettingModule.framework", |
| 363 | 365 | "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/CNLiveTripartiteManagement.framework", |
| 366 | + "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/CNLiveUserAgreementManager.framework", | |
| 364 | 367 | "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/CNLiveUserManagement.framework", |
| 365 | 368 | "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/JXCategoryView.framework", |
| 366 | 369 | "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/MJExtension.framework", |
| ... | ... | @@ -368,6 +371,7 @@ |
| 368 | 371 | "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/QMUIKit.framework", |
| 369 | 372 | "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/SDWebImage.framework", |
| 370 | 373 | "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/SGQRCode.framework", |
| 374 | + "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/YYKit.framework", | |
| 371 | 375 | ); |
| 372 | 376 | runOnlyForDeploymentPostprocessing = 0; |
| 373 | 377 | shellPath = /bin/sh; | ... | ... |
Example/CNLiveMineModule/CNLIVEAppDelegate.m
| ... | ... | @@ -14,7 +14,7 @@ |
| 14 | 14 | - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions |
| 15 | 15 | { |
| 16 | 16 | // Override point for customization after application launch. |
| 17 | - self.window = [[UIWindow alloc] initWithFrame:[UIScreen mainScreen].bounds];//UIScreen mainScreen].bounds个人理解获取屏幕的硬件信息然后设置尺寸大小 | |
| 17 | + self.window = [[UIWindow alloc] initWithFrame:[UIScreen mainScreen].bounds]; | |
| 18 | 18 | CNLiveMineController *vc = [[CNLiveMineController alloc] init]; |
| 19 | 19 | UINavigationController *nav = [[UINavigationController alloc]initWithRootViewController:vc]; |
| 20 | 20 | self.window.rootViewController = nav;//设置根视图控制器 | ... | ... |