
Untitled
By: a guest on
May 9th, 2012 | syntax:
None | size: 0.65 KB | hits: 13 | expires: Never
How do you tweet multiple UITextField with TWTweetComposeViewController?
@property (nonatomic, strong) IBOutlet UITextField *theWorld;
@property (nonatomic, strong) IBOutlet UITextField *isGreen;
@property (nonatomic, strong) IBOutlet UITextField *andBeautiful;
{
TWTweetComposeViewController *tweetSheet =
[[TWTweetComposeViewController alloc] init];
[tweetSheet setInitialText:
theWorld.text];
[self presentModalViewController:tweetSheet animated:YES];
}
NSString *text = [NSString stringWithFormat:@"%@ %@ %@",
theWorld.text, isGreen.text, andBeautiful.text];
[tweetSheet setInitialText:text];