Anyone else noticed this issue? Is there a workaround? The issue can be reproduced on an iPad Pro 11" with this code:
class ViewController: UIViewController {
@IBOutlet weak var textView: TextView!
override func viewDidLoad() {
super.viewDidLoad()
let h = CGFloat(560)
textView.textContainerInset = UIEdgeInsets(top: h, left: 0, bottom: 0, right: 0)
}
}