Skip to content
This repository has been archived by the owner on Apr 15, 2020. It is now read-only.

othermedia/OTHERAppStoreUpdateChecker

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

OTHERAppStoreUpdateChecker

The OTHERAppStoreUpdateChecker class provides a method that uses the iTunes App Store API to check if a version of the app with a different version number is available in the App Store.

Example:

[OTHERAppStoreUpdateChecker checkForUpdatesWithAppleID:@"123456789" completionBlock:^(BOOL updateAvailable, NSDictionary *results, NSError *error) {
	
	if (error == nil && updateAvailable) {

		NSString *newVersionNumber = [results objectForKey:OTHERAppStoreUpdateCheckerVersionKey];
		NSString *whatsNew = [results objectForKey:OTHERAppStoreUpdateCheckerWhatsNewKey];
		NSString *appStoreURL = [results objectForKey:OTHERAppStoreUpdateCheckerAppStoreURLKey];
	}
}];

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Packages

No packages published