I am facing problems while converting UInt8 Byte array to string in swift. I have searched and find a simple solution
UInt8
String.stringWithBytes(buf
This worked for me:
String(bytes: bytes, encoding: NSUTF8StringEncoding)