神秘的TwitterKit崩溃

时间:2017-05-29 08:17:31

标签: ios twitter twitter-fabric

我在通过Fabric使用TwitterKit时看到了一个相当神秘的崩溃。

我的应用程序在此行崩溃:

Fabric.with([Crashlytics.self, Twitter.self])

话说:

[Fabric] Please upgrade to the latest version of "Twitter"
[Crashlytics] Version 3.8.4 (121)
Calling Twitter.start is not supported.

我整合TwitterKit就像文档指示的那样,将密钥和网址方案添加到我的Info.plist中,但我无法弄清楚为什么Twitter会突然崩溃。

1 个答案:

答案 0 :(得分:11)

使用TwitterKit 3 +的新工作版

Fabric.with([Crashlytics.self]) 
Twitter.sharedInstance().start(withConsumerKey: "key", consumerSecret: "secret")

新的Pod文件

pod 'Fabric'
pod 'Crashlytics'
pod 'TwitterKit'

旧版本:

Fabric.with([Crashlytics.self, Twitter.self])