Commit 496f57e216e4a61df78de334393c173adfc5c42e
1 parent
f6ac8fb5
1.1.4.24.09.04.11 , 修复版本更新弹窗 ,点击更新不调整Appstore问题
Showing
2 changed files
with
7 additions
and
5 deletions
metaCode.xcodeproj/project.pbxproj
| @@ -2632,7 +2632,7 @@ | @@ -2632,7 +2632,7 @@ | ||
| 2632 | CODE_SIGN_ENTITLEMENTS = metaCode/metaCode.entitlements; | 2632 | CODE_SIGN_ENTITLEMENTS = metaCode/metaCode.entitlements; |
| 2633 | CODE_SIGN_IDENTITY = "Apple Development"; | 2633 | CODE_SIGN_IDENTITY = "Apple Development"; |
| 2634 | CODE_SIGN_STYLE = Automatic; | 2634 | CODE_SIGN_STYLE = Automatic; |
| 2635 | - CURRENT_PROJECT_VERSION = 1.1.3.24.09.02.17; | 2635 | + CURRENT_PROJECT_VERSION = 1.1.4.24.09.04.11; |
| 2636 | DEBUG_INFORMATION_FORMAT = dwarf; | 2636 | DEBUG_INFORMATION_FORMAT = dwarf; |
| 2637 | DEVELOPMENT_TEAM = 94X49GG3ZW; | 2637 | DEVELOPMENT_TEAM = 94X49GG3ZW; |
| 2638 | ENABLE_BITCODE = NO; | 2638 | ENABLE_BITCODE = NO; |
| @@ -2705,7 +2705,7 @@ | @@ -2705,7 +2705,7 @@ | ||
| 2705 | "$(inherited)", | 2705 | "$(inherited)", |
| 2706 | "@executable_path/Frameworks", | 2706 | "@executable_path/Frameworks", |
| 2707 | ); | 2707 | ); |
| 2708 | - MARKETING_VERSION = 1.1.3; | 2708 | + MARKETING_VERSION = 1.1.4; |
| 2709 | OTHER_LDFLAGS = ( | 2709 | OTHER_LDFLAGS = ( |
| 2710 | "$(inherited)", | 2710 | "$(inherited)", |
| 2711 | "-all_load", | 2711 | "-all_load", |
| @@ -2888,7 +2888,7 @@ | @@ -2888,7 +2888,7 @@ | ||
| 2888 | CODE_SIGN_ENTITLEMENTS = metaCode/metaCode.entitlements; | 2888 | CODE_SIGN_ENTITLEMENTS = metaCode/metaCode.entitlements; |
| 2889 | CODE_SIGN_IDENTITY = "Apple Development"; | 2889 | CODE_SIGN_IDENTITY = "Apple Development"; |
| 2890 | CODE_SIGN_STYLE = Automatic; | 2890 | CODE_SIGN_STYLE = Automatic; |
| 2891 | - CURRENT_PROJECT_VERSION = 1.1.3.24.09.02.17; | 2891 | + CURRENT_PROJECT_VERSION = 1.1.4.24.09.04.11; |
| 2892 | DEVELOPMENT_TEAM = 94X49GG3ZW; | 2892 | DEVELOPMENT_TEAM = 94X49GG3ZW; |
| 2893 | ENABLE_BITCODE = NO; | 2893 | ENABLE_BITCODE = NO; |
| 2894 | ENABLE_MODULE_VERIFIER = NO; | 2894 | ENABLE_MODULE_VERIFIER = NO; |
| @@ -2960,7 +2960,7 @@ | @@ -2960,7 +2960,7 @@ | ||
| 2960 | "$(inherited)", | 2960 | "$(inherited)", |
| 2961 | "@executable_path/Frameworks", | 2961 | "@executable_path/Frameworks", |
| 2962 | ); | 2962 | ); |
| 2963 | - MARKETING_VERSION = 1.1.3; | 2963 | + MARKETING_VERSION = 1.1.4; |
| 2964 | OTHER_LDFLAGS = ( | 2964 | OTHER_LDFLAGS = ( |
| 2965 | "$(inherited)", | 2965 | "$(inherited)", |
| 2966 | "-all_load", | 2966 | "-all_load", |
metaCode/Classes/Main/MinePage/View/CNLiveMineInfoAlertView.swift
| @@ -557,7 +557,9 @@ class UpdataAlertView: UIView { | @@ -557,7 +557,9 @@ class UpdataAlertView: UIView { | ||
| 557 | @objc func sendLoginActionMothod() -> Void { | 557 | @objc func sendLoginActionMothod() -> Void { |
| 558 | print("跳转到appstore") | 558 | print("跳转到appstore") |
| 559 | ConfigManager.shared.show_update = false | 559 | ConfigManager.shared.show_update = false |
| 560 | - showMessage(message: "跳转到AppStore") | 560 | + let url = URL(string: "https://apps.apple.com/cn/app/%E5%85%83%E7%A0%81/id6449487297") |
| 561 | + if UIApplication.shared.canOpenURL(url!) { UIApplication.shared.open(url!, options: [:], completionHandler: nil) | ||
| 562 | + } | ||
| 561 | } | 563 | } |
| 562 | 564 | ||
| 563 | @objc func setupCloseButtonAction() -> Void { | 565 | @objc func setupCloseButtonAction() -> Void { |