user2228755
user2228755

Reputation: 407

Pressing Tab Does Not Select Next Control | Cocoa

Tab was working but now when I press tab the next control on the custom view wont select. Do you know why tab is not selecting the next control?

Note, autoRecalculatesKeyViewLoop on the parent Nib is TRUE.

Upvotes: 2

Views: 286

Answers (1)

Ian
Ian

Reputation: 4185

You have to connect the nextKeyView outlet from the "source view" to the next view in Interface Builder:

nextKeyView

Cool thing about this is that you can overwrite the default behavior.

Upvotes: 5

Related Questions