개발/SWIFT 아이폰
SwiftUI 앱 스토어 버전 확인 후 업데이트
앱 스토어 버전 확인 후 앱 업데이트 하기 class AppStore { // 업데이트 확인 로직을 비동기적으로 수행합니다. func checkUpdateAvailable(completion: @escaping (Bool) -> Void) { DispatchQueue.global().async { guard let currentVersion = Bundle.main.infoDictionary?["CFBundleShortVersionString"] as? String, let bundleID = Bundle.main.infoDictionary?["CFBundleIdentifier"] as? String, let url = URL(string: "http://itunes.apple.com/lookup?bun..
2023. 8. 2. 14:42