通过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中添加了 key 和url方案,但我不知道为什么Twitter突然崩溃了。

最佳答案

带有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])

关于ios - 神秘的TwitterKit崩溃,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/44237682/

10-12 21:35