Skip to content

Instantly share code, notes, and snippets.

@tigi44
Last active May 20, 2020 08:44
Show Gist options
  • Save tigi44/2463f71a0d4d9a45cce0eab4a137fd8d to your computer and use it in GitHub Desktop.
Save tigi44/2463f71a0d4d9a45cce0eab4a137fd8d to your computer and use it in GitHub Desktop.
[iOS, Objective-c] UIActivityViewController : Share File
// UIActivityViewController
NSURL *sFilePathURL = [NSURL fileURLWithPath:aFilePath];
UIActivityViewController *sActivityController = [[UIActivityViewController alloc] initWithActivityItems:@[sFilePathURL] applicationActivities:nil];
[self presentViewController:sActivityController animated:YES completion:nil];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment