Skip to content

Instantly share code, notes, and snippets.

@aug2uag
Created January 2, 2014 00:02
Show Gist options
  • Save aug2uag/8213106 to your computer and use it in GitHub Desktop.
Save aug2uag/8213106 to your computer and use it in GitHub Desktop.
UIActivityViewController
NSString* textToShare = <# INPUT #>;
UIImage* imageToShare = <# INPUT #>;
NSArray* thingsToShare = @[textToShare, imageToShare];
UIActivityViewController* activityViewController = [[UIActivityViewController alloc] initWithActivityItems:thingsToShare applicationActivities:nil];
[self presentViewController:activityViewController animated:YES completion:nil];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment