Created
March 7, 2013 09:56
-
-
Save fmtonakai/5106889 to your computer and use it in GitHub Desktop.
UIActivityViewControllerでTwitterの時だけハッシュタグをつける実装呼び出し
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
- (IBAction)share:(id)sender | |
{ | |
ActivityText *text = [[ActivityText alloc] initWithText:@"本文はこちらです。" hashTag:@"ハッシュタグ"]; | |
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