Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I know how to tweet a message using the standard iOS 5 twitter framework (using the code bellow). I do not know:

a) If it is possible to send a tweet to a specific recipient (myself). I would like to do this as a "Contact Us" feature in my app so the user can message me.

b) If there is a way to make the user follow me on Twitter.

Thanks in advance!

-(IBAction)twitter:(id)sender {

if ([TWTweetComposeViewController canSendTweet])
{
    TWTweetComposeViewController *tweetSheet =
    [[TWTweetComposeViewController alloc] init];
    [tweetSheet setInitialText:
     @"About my app"];
    [self presentModalViewController:tweetSheet animated:YES];
}
else
{
    UIAlertView *alertView = [[UIAlertView alloc]
                              initWithTitle:@"Error"
                              message:@"No Internet Connection"
                              delegate:self
                              cancelButtonTitle:@"OK"
                              otherButtonTitles:nil];
    [alertView show];
}}
share|improve this question

1 Answer

up vote 1 down vote accepted

a, send a reply:

[tweetSheet setInitialText:
 @"@pantelisproios About my app"];

b, follow by sending a tweet:

[tweetSheet setInitialText:
 @"follow pantelisproios"];

You can also use TWRequest if you want to use the twitter API directly.

share|improve this answer
So easy! Thank you very much! – Pantelis Proios Jul 30 '12 at 11:53

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.