How to remove "search web" option for selected text iOS 16 xcode14 beta
I'm having trouble removing this tick when text is selected, I've tried this: class CustomUITextField: UITextField { open override func canPerformAction(_ action: Selector, withSender sender: Any?) -> Bool { return false } } which removes stuff like copy, paste etc,…