我想添加回复推文的功能,并希望使用内置对话框。有没有办法做到这一点,或者可能是这个场景中存在的库?
我尝试在对话框中添加@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];
是否有解决方案,或者我是否需要手动创建对话框并设置样式?