We can share posts in twitter by using following steps.
First add one button on view controller and give action to it.
import one in your project that is-> #import <Social/Social.h>
Now in button action write following code->
- (IBAction)twitterButtonAction:(id)sender {
SLComposeViewController *tweetSheet = [SLComposeViewController
composeViewControllerForServiceType:SLServiceTypeTwitter];
[tweetSheet setInitialText:@"My tweet"];
[self presentViewController:tweetSheet animated:NO completion:nil];
}
0 Comment(s)