Is it possible to init a Swift string (not NSString) with the contents of an NSData object without creating an NSString first?
I know I can use this with NSString:
var datastring = NSString(data data: NSData!, encoding encoding: UInt)
But how can I use a basic Swift String type? I thought Swift strings and NSStrings were interchangeable, do I really have to get the data out of NSData using NSString and then assign that value to a Swift string?