标签: swift xcode
每当我输入“ UIImageJPEGRepresentation(img, 2.0)”时,都会给我一个错误。有谁知道如何解决这一问题?
UIImageJPEGRepresentation(img, 2.0)
我已经尝试将其从值“ UIImage?”解包为“ UIImage”
UIImage?
UIImage
if let imgData = UIImageJPEGRepresentation(img, 2.0) { }
答案 0 :(得分:-1)
compressionQuality的最大值为1.0
compressionQuality
请参见documentation