Skip to content

Instantly share code, notes, and snippets.

@fmtonakai
Last active December 14, 2015 15:19
Show Gist options
  • Save fmtonakai/5106823 to your computer and use it in GitHub Desktop.
Save fmtonakai/5106823 to your computer and use it in GitHub Desktop.
普通にUIActivityViewControllerで共有する場合
-(void)openActivityController
{
NSString *text = @"本文はこちらです。 #ハッシュタグ";
UIActivityViewController *avc = [[UIActivityViewController alloc] initWithActivityItems:@[text] applicationActivities:nil];
[self presentViewController:avc animated:YES completion:nil];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment