Last active
August 29, 2015 14:21
-
-
Save litefeel/39ffac9bb2e1fe3ea73a to your computer and use it in GitHub Desktop.
app store 更新链接
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
- (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