Created
February 18, 2014 06:26
-
-
Save neiraza/9065606 to your computer and use it in GitHub Desktop.
端末の設定画面(Twitter)へ飛ばしたい ref: http://qiita.com/neiraza/items/9cf827dc7585bbc366c2
This file contains hidden or 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
- (void)viewDidLoad | |
{ | |
SLComposeViewController *tweetSheet = [SLComposeViewController composeViewControllerForServiceType:SLServiceTypeTwitter]; | |
tweetSheet.view.hidden = YES; | |
[self presentViewController:tweetSheet animated:NO completion:^{ | |
[self dismissViewControllerAnimated:NO completion:nil]; | |
}]; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment