App Store JSON APIで新版検知
App Storeの公開JSON APIから最新バージョンを取得し、現在のアプリバージョンと比較。新版があればアラートでApp Storeへの誘導。
final class AppUpdateService {
func checkForUpdate() async throws -> UpdateInfo?
}
struct UpdateInfo {
let latestVersion: String
let releaseNotes: String
let appStoreURL: URL
}
CFBundleShortVersionString と比較| バージョン | 日付 | 変更内容 |
|---|---|---|
| 1.0 | 2026-05-09 | 初版作成 |