Skip to content

Instantly share code, notes, and snippets.

@litefeel
Last active August 29, 2015 14:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save litefeel/39ffac9bb2e1fe3ea73a to your computer and use it in GitHub Desktop.
Save litefeel/39ffac9bb2e1fe3ea73a to your computer and use it in GitHub Desktop.
app store 更新链接
- (void)application:(UIApplication *)application didReceiveLocalNotification:(UILocalNotification *)notification {
// open app store link
NSString * url = [NSString stringWithFormat:@"itms-apps://itunes.apple.com/app/id%@", APP_STORE_ID];
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:url]];
}
// APP INFO URL: http://itunes.apple.com/lookup?id=APP_STORE_ID
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment