我已经使用 Twitter 框架发送推文。我想将一些数据从应用程序传递到推文,但它不能。
我的代码。`
if ([TWTweetComposeViewController canSendTweet]) {
// Initialize Tweet Compose View Controller
TWTweetComposeViewController *vc = [[TWTweetComposeViewController alloc] init];
UITextField *txtFild1=[[UITextField alloc]init];
txtFild1.text=shareString;
// Settin The Initial Text
[vc setInitialText:self.shareString];
[txtFild1 release];
// Adding an Image
// Adding a URL
// Setting a Completing Handler
[vc setCompletionHandler:^(TWTweetComposeViewControllerResult result) {
[self dismissModalViewControllerAnimated:YES];
}];
// Display Tweet Compose View Controller Modally
[self presentViewController:vc animated:YES completion:nil];
`
我的数据在共享字符串中。但它不设置为初始文本。
怎么解决?