我想添加回复推文的功能,并想使用内置对话框。有什么办法可以做到这一点,或者可能是这种情况下存在的库?
我尝试简单地将其添加@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];
有没有解决方案,还是我需要手动创建一个对话框并设置它的样式?