Posts

Post not yet marked as solved
3 Replies
This will work in swift to disable the focusRing for all textViews globally. extension UITextView { #if targetEnvironment(macCatalyst) @objc(_focusRingType) var focusRingType: UInt { return 1 //NSFocusRingTypeNone } #endif }