ios:如果安装了Twitter应用程序,使用SLComposeViewController进行推文会将推文保存到Draft

时间:2016-06-12 12:08:06

标签: ios twitter slcomposeviewcontroller

我有一个使用SLComposeViewController发布推文的应用。如果我的设备上没有安装Twitter应用程序(iOS 9.3.2),它可以正常工作。 但是,如果它安装了,我的应用程序说,发布了推文。当我打开Twitter应用程序时说:

" 推文未能发送
您的推文无法发送并且已经发送 被保存为草稿"。

如果我删除Twitter应用程序,一切正常。它之前工作得很好 API中有什么变化吗?如何在没有草稿的情况下发推文?

用于推文的代码:

if ([SLComposeViewController isAvailableForServiceType:SLServiceTypeTwitter]) {
    SLComposeViewController* tweetVC = [SLComposeViewController composeViewControllerForServiceType:SLServiceTypeTwitter];
    [tweetVC setInitialText:t];
    tweetVC.completionHandler = ^(SLComposeViewControllerResult result) {
        switch (result) {
            case SLComposeViewControllerResultCancelled: …; break;
            case SLComposeViewControllerResultDone:      …; break;
        }
        [vc dismissViewControllerAnimated:YES completion:nil];
    };
    [vc presentViewController:tweetVC animated:YES completion:nil];
}

此外,我在设备控制台中有以下消息:

Jun 12 14:40:50 zxPad2 pkd[5937] <Warning>: assigning plug-in com.apple.share.Twitter.post(6.50) to plugin sandbox
Jun 12 14:40:50 zxPad2 pkd[5937] <Warning>: enabling pid=6180 for plug-in com.apple.share.Twitter.post(6.50) 47151597-AD1B-4874-936B-C5A7D1D3E2F1 /private/var/containers/Bundle/Application/755F79DE-E26B-4FDD-B34D-C5937E406A3D/Twitter.app/PlugIns/ShareExtension.appex
Jun 12 14:40:50 zxPad2 ShareExtension[6183] <Warning>: host connection <NSXPCConnection: 0x126d44260> connection from pid 6180 invalidated
Jun 12 14:41:19 zxPad2 myapp[6180] <Notice>: 2016-06-12 14:41:19.023|myapp|0x13fd14c90: SLRemoteComposeViewController: (this may be harmless) viewServiceDidTerminateWithError: Error Domain=_UIViewServiceErrorDomain Code=1 "(null)" UserInfo={Terminated=disconnect method}
Jun 12 14:41:24 zxPad2 myapp[6180] <Warning>: plugin com.apple.share.Twitter.post invalidated

是否可以通过已安装的Twitter应用通过SLComposeViewController发送推文?

1 个答案:

答案 0 :(得分:0)

我注意到安装Twitter App时,您必须登录Twitter帐户vida OS&gt;解决此问题的设置。