我是Xcode和swift的新手。
我已经开始使用TwitterKit,我已经使用cocoapods在我的项目中安装了它,我按照本教程:https://dev.twitter.com/twitterkit/ios/installation
问题是,当我尝试在AppDelegate中初始化TwitterKit时,我无法使用Twitter.sharedInstace
,因为Twitter
不存在。 (我已使用import TwitterKit
)
这是我的App Delegete课程:
import UIKit
import TwitterKit
import Firebase
import FirebaseAuth
@UIApplicationMain
class AppDelegate: UIResponder, UIApplicationDelegate {
var window: UIWindow?
func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplicationLaunchOptionsKey: Any]?) -> Bool {
// Override point for customization after application launch.
Twitter.sharedInstance().start(withConsumerKey:"********", consumerSecret:"*******")
//Here I get the error: Use of unresolved identifier 'Twitter'
return true
}
我做错了什么?
答案 0 :(得分:7)
如果使用Swift 4,则需要使用几乎Twitter.sharedInstance()的TWTRTwitter.sharedInstance(),因为Twitter类已被TWTRTwitter取代。使用对象C,您不会遇到此问题,因为有一个宏隐藏了此更改。不幸的是" dev.twitter.com"尚未更新。