6

我正在尝试使用 IOS7 实现 twitter 帖子SLComposeViewController,但出现以下错误 -

无法发送推文“blah blah”,因为与 twitter 的连接失败。

我在推文中包含图片和 URL - 如果这有什么不同的话..

下面的代码 -

SLComposeViewController *composeController = [SLComposeViewController composeViewControllerForServiceType:SLServiceTypeTwitter];

[composeController setInitialText:@"i ran with 18 chickens under my armpits for 18 hours"];
[composeController addImage:[UIImage imageNamed:@"zoeLrg.png"]];
[composeController addURL: [NSURL URLWithString:
                            @"http://www.nme.com"]];

[self presentViewController:composeController
                   animated:YES completion:nil];

SLComposeViewControllerCompletionHandler myBlock = ^(SLComposeViewControllerResult result){
    if (result == SLComposeViewControllerResultCancelled) {

        NSLog(@"delete");

    } else

    {
        NSLog(@"post");
    }

    [composeController dismissViewControllerAnimated:YES completion:Nil];
};
composeController.completionHandler =myBlock;
4

1 回答 1

4

你能检查你的调试控制台看看返回了什么错误吗?通常,这些消息将提供更多信息。此外,如果您在设备上配置了多个帐户,则存在与之相关的开放雷达问题,这可能适用于您的情况。请查看http://www.openradar.me/radar?id=5262535380959232

于 2013-11-14T21:10:48.237 回答