我正在尝试使用服务类型Twitter呈现SLComposerViewController。以5到6秒的速度呈现推特作曲家视图。一旦它呈现,下一次推迟推出twitter视图逐渐减少。这是我的代码
dispatch_async(dispatch_get_main_queue(), ^{
if ([SLComposeViewController isAvailableForServiceType:SLServiceTypeTwitter])
{
SLComposeViewController *tweet = [SLComposeViewController
composeViewControllerForServiceType:SLServiceTypeTwitter];
[tweet setInitialText:initialText];
[myViewController presentViewController:tweet animated:YES completion:nil];
}
});
任何帮助将不胜感激:)
感谢。