Search code examples
xcodensdatexcode6swift-playground

Swift NSDate Xcode error - SourceKitService terminated


import Foundation


var currentTime = NSDate()
println("It is currently", currentTime)

This Swift code is very simple and should work, correct? Why am i receiving an error that says "SourceKitService terminated - editor functionality currently limited" Am I doing something wrong or is it the beta's fault?


Solution

  • You would use string interpolation as Jack Wu suggested in the first comment:

    println("It is currently \(currentTime)")
    

    The println primary function does not take multiple arguments. You could also use

    println(currentTime)
    

    However, the fact that your first (syntax error) attempt causes Xcode 6 to crash (at least it does for me) is certainly a bug. You should just get an issue reported.