Skip to content

Instantly share code, notes, and snippets.

@jeffbailey
Created December 17, 2014 18:38
Show Gist options
  • Save jeffbailey/64d98e98370a46b8c296 to your computer and use it in GitHub Desktop.
Save jeffbailey/64d98e98370a46b8c296 to your computer and use it in GitHub Desktop.
Example of sharing a PDF in iOS 8
NSArray* itemsToShare = [NSArray arrayWithObjects:pdfData, nil];
UIActivityViewController *activityVC = [[UIActivityViewController alloc] initWithActivityItems:itemsToShare applicationActivities:nil];
activityVC.excludedActivityTypes = @[UIActivityTypeCopyToPasteboard]; //or whichever you don't need
activityVC.popoverPresentationController.sourceView = self.view;
[self presentViewController:activityVC animated:YES completion:nil];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment