skip to Main Content
author
151 views
0 votes

Ios swift – Convert UIImage.size to String

if(image != nil){
mediaSize = String(image!.size.width) + "|" + String(image!.size.height)
}

The result should be

Back To Top
Search