This is how I create Data
from UIImage
:
let data = UIImagePNGRepresentation(image)
And then I need to convert it to String
;
if let data = data {
let stringFromData = String(data: data, encoding: .utf8)
}
but stringFromData
is nil. Why?