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.

For iOS5 we can refer : Prompt login alert with Twitter framework in iOS5?

But for iOS6 that will not helpfull i have tried in following way but there is 1 keyboard appearance issue is present is there any one who can help me on this :

SLComposeViewController *tweetSheet = [SLComposeViewController composeViewControllerForServiceType:SLServiceTypeTwitter];
tweetSheet.view.hidden=TRUE;

[self presentViewController:tweetSheet animated:YES completion:^{
    [tweetSheet.view endEditing:YES];
}];
share|improve this question
This will shows alert for login only when you have not any twitter account setup on your device. – RayofHope Dec 19 '12 at 5:31

1 Answer

up vote 4 down vote accepted

I have make one small change and the issue gone away

in above code when presenting viewcontroller just set animated:NO


    [self presentViewController:tweetSheet animated:NO completion:^{
        [tweetSheet.view endEditing:YES];
    }]

share|improve this answer

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.