iOS Twitter回复对话框

时间:2013-08-14 19:11:53

标签: ios twitter

我想添加回复推文的功能,并希望使用内置对话框。有没有办法做到这一点,或者可能是这个场景中存在的库?

我尝试在对话框中添加@username作为初始文本,但不会将其作为对特定推文的回复发布:

SLComposeViewController* cvc = [SLComposeViewController composeViewControllerForServiceType:SLServiceTypeTwitter];
cvc.completionHandler = ^(SLComposeViewControllerResult result) { };
[cvc setInitialText:[NSString stringWithFormat:@"@%@", [self.tweet objectForKey:@"twitter_screen_name"]]];
[controller presentViewController:cvc animated:YES completion:nil];

是否有解决方案,或者我是否需要手动创建对话框并设置样式?

0 个答案:

没有答案