Problem avoiding first responder on a NSTextField
Problem avoiding first responder on a NSTextField I need to change behavior of input fields in a really simple app: Whenever i launch the application the first text field get the focus, but i don't want this behavior. I tried checking "Refuses first responder" in IB. It works but with this option checked i can't move between input fields pressing "tab" button. What can i do to avoid focus at startup and keep the ability to move with tab keyboard button ? Not really an answer since i didn't tried it on MacOS, but on iOS I would use [textfield resignFirstResponder] on load. – Valentin Radu Aug 11 '11 at 11:02 @mindnoise nothing to do, it still maintains focus. – MatterGoal Aug 11 '11 at 12:17 ...