Here is an IBAction that I coded that implements this Twitter functionality. -(IBAction)tweetTweet:(id)sender { NSLog(@"%i", [TWTweetComposeViewController canSendTweet]); TWTweetComposeViewController *tweeter = [[TWTweetComposeViewController alloc] init]; [tweeter setInitialText:self.myTextField.text]; [self presentModalViewController:tweeter animated:YES]; } |
0 Comments