Skip to content

Instantly share code, notes, and snippets.

@nzhuk
Created September 16, 2013 10:08
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 nzhuk/6578812 to your computer and use it in GitHub Desktop.
Save nzhuk/6578812 to your computer and use it in GitHub Desktop.
Share this with iOS native Facebook sharing
- (IBAction)share:(id)sender
{
NSURL *url = [NSURL URLWithString:@"https://itunes.com/apps/apple/pages"];
UIActivityViewController *vc = [[UIActivityViewController alloc] initWithActivityItems:@[url] applicationActivities:nil];
[self presentViewController:vc animated:YES completion:nil];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment