nicklockwood / iRate

[DEPRECATED]
http://charcoaldesign.co.uk/source/cocoa#irate
Other
4.1k stars 733 forks source link

Add notification when new app version is available on App Store #236

Closed jigmelam closed 8 years ago

jigmelam commented 8 years ago

Please add notification when the new app version is available on App Store. I would like to prompt user to update the latest app version when available. May be modify in this code statement: //check version if (self.onlyPromptIfLatestVersion && !self.previewMode) { NSString *latestVersion = [self valueForKey:@"version" inJSON:json]; if ([latestVersion compare:self.applicationVersion options:NSNumericSearch] == NSOrderedDescending)

Thank so much!

nicklockwood commented 8 years ago

I have another library called iVersion that does exactly what you're asking for. You can use it together with iRate in the same project.

jigmelam commented 8 years ago

Thank you!