Swift: Convert to NSString for unescaped output
In Swift we can output a String object to Xcode console using a print(…) statement in the code or po (print object) in the debugger (lldb). Xcode automatically escapes single and double quotes in the console output. This is especially annoying…

