// compressing image(avaImg)before sending it to the server(Parse)
let avaData = UIImageJPEGRepresentation(avaImg.image!, 0.5)
let avaFile = PFFile(name: "ava.jpg", data: avaData!)
user["ava"] = avaFile
When I replace it to the following line as recommended by the notifications I get the error below
let avaData = UIImage.jpegData(avaImg.image!, 0.5)
ERROR: Instance member 'jpegData' cannot be used on type 'UIImage'; did you mean to use a value of this type instead?
I'm a newbie and I followed that on an online course so please baby steps!