mixtly87

Results 12 comments of mixtly87

Thanks @Andrew-Chen-Wang for pointing me to the right direction. I was able to focus the web view and set the cursor at the beginning of the document by adding the...

Btw focusing for me worked on simulator but not on device (iPhone Mini 12, iOS 16.3.1). What fixed it was [this thread](https://github.com/cjwirth/RichEditorView/issues/238). In viewDidAppear: ``` textView.webView.setKeyboardRequiresUserInteraction(false) textView.focus(at: .zero) ``` and...