Skip to content

Instantly share code, notes, and snippets.

@alvareztech
Created November 3, 2013 20:10
Show Gist options
  • Save alvareztech/7294253 to your computer and use it in GitHub Desktop.
Save alvareztech/7294253 to your computer and use it in GitHub Desktop.
iOS: Publish tweet.
if ([SLComposeViewController isAvailableForServiceType:SLServiceTypeTwitter]) {
SLComposeViewController *tweetSheetOBJ = [SLComposeViewController
composeViewControllerForServiceType:SLServiceTypeTwitter];
[tweetSheetOBJ setInitialText:@"My tweet"];
[self presentViewController:tweetSheetOBJ animated:YES completion:nil];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment