iOS Swift 2 Twitter登录集成
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了iOS Swift 2 Twitter登录集成相关的知识,希望对你有一定的参考价值。
我想在我的项目中集成Twitter登录。我正在使用Xcode7并关注Twitter login tutorial。但我收到AppDelegate value of type 'Twitter' has no member start
中的错误。我已经安装了pod 'TwitterKit'
并在#import <TwitterKit/TwitterKit.h>
中添加了bridging header
。下面是AppDelegate中的代码
func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplicationLaunchOptionsKey: Any]?) -> Bool {
Twitter.sharedInstance().start(withConsumerKey:"hTpkPVU4pThkM0", consumerSecret:"ovEqziMzLpUOF163Qg2mj")
return true
}
任何帮助,将不胜感激。提前致谢
答案
从你的代码看起来你似乎使用Swift2
但你使用Swift3
方法为Twitterkit
使用这个Swift2
方法再试一次,它应该适合你
Twitter.sharedInstance().startWithConsumerKey("your_key", consumerSecret: "your_secret")
另一答案
使用此对于Swift4.0
TWTRTwitter.sharedInstance().start(withConsumerKey: "your_key", consumerSecret: "your_secret")
以上是关于iOS Swift 2 Twitter登录集成的主要内容,如果未能解决你的问题,请参考以下文章
Twitter登录 - 应用程序代理和应用程序崩溃中的线程1 Sigabrt错误
swift - 创建没有完成块的 Twitter 登录按钮?