Skip to content

Instantly share code, notes, and snippets.

@piaoapiao
Created November 18, 2012 03:51
Show Gist options
  • Save piaoapiao/4103404 to your computer and use it in GitHub Desktop.
Save piaoapiao/4103404 to your computer and use it in GitHub Desktop.
Open NSURL
NSURL *url = [NSURL URLWithString:@"http://maps.google.com/maps?q=pizza"]; [[UIApplication sharedApplication]openURL:url];
NSString *url = @"mailto:846745250@qq.com?subject=User Feedback!&body=fuck you";
url = [url stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding];
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:url]];
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"http://itunesconnect.apple.com"]];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment