Ios swift – Convert UIImage.size to String
if(image != nil){ mediaSize = String(image!.size.width) + "|" + String(image!.size.height) } The result should be like "400|300" I get the error: No exact matches in call to initializer image is UIImage and I'm uploading it to the server before I…