-
Notifications
You must be signed in to change notification settings - Fork 2
Usage
Botond Magyarosi edited this page Sep 18, 2018
·
3 revisions
ReleaseRadar is easy to use through the exposed ReleaseRadar class.
let releaseRadar = ReleaseRadar(iTunesId: "12345678")
releaseRadar.verify { result in
switch result {
case .updated(let appInfo):
// your app has been updated
// access update information through *appInfo*
case .notUpdated:
// no update was performed
}
}