尝试在 Swift xcode 上实施 Chartboost 时出现此错误?

Getting this error when trying to implement Chartboost on Swift xcode?

我有这段代码可以将我的 AppID 和 App Signature 添加到我的 AppDelegate.swift 文件中,但我在最后一行代码中遇到错误。它说:“无法使用类型为 (String, String, Delegate: AppDelegate) 的参数列表调用 startWithAppId。我做错了什么?谢谢!

  func application(application: UIApplication, didFinishLaunchingWithOptions launchOptions: [NSObject: AnyObject]?) -> Bool {
    let kChartboostAppID = "5236547547457856858568"
    let kChartboostAppSignature = "523525225"

    Chartboost.startWithAppId(kChartboostAppID, appSignature: kChartboostAppSignature, delegate: self)
    }

我忘记添加 ChartboostDelegate 初始值设定项。现在可以使用了!