When I draw a new image, uitextview is blurred.
First text which is after draw new image. it looks like fuzzy.
Seconde text is captured
I tried this anwser changing frame to integer.
UITextField blurred text
It was working before draw new image but it doesn't work when draw image.
here is my code
// UIView -> UIImage
convenience init(view: UIView) {
UIGraphicsBeginImageContextWithOptions(view.bounds.size, view.isOpaque, 0)
view.drawHierarchy(in: view.bounds, afterScreenUpdates: true)
let image = UIGraphicsGetImageFromCurrentImageContext()!
UIGraphicsEndImageContext()
self.init(cgImage: image.cgImage!)
}
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…