I know your initial thought is that this is a duplicate. I have looked into all the duplicate questions, popular one being How do I print the type or class of a variable in Swift? But it didn't seem to help.
I have defined an array like this var stringArray = ["this","is","string","array"]
I tried println("\(object_getClassName(stringArray))")
which is the chosen answer in the above specified post. But that results in Xcode going into some loop of showing this error
SourceKit service terminated. Editor functionality temporarily limited.
This seems to be a known reported bug which seems to occur in various scenario's.
I tried stringArray.className and stringArray.dynamicType.description(). I get a compiler error saying those properties are not defined.
Any directions would be appreciated.