I have a TableView with TextFields in each cell and I want to those textfields
ignore the character tab (\\t).
When the tab key is pressed, the t
I think this is possible, but difficult. Basically, I would try to ensure that when the text field becomes the first responder, no other view can become the first responder. Then, pressing tab will do nothing. Then, you would have to reverse this effect when another view that actually could become first responder is selected, or when the text field resigns first responder.