I have a Cocoa Form (xib) which contains some NSTextField
s and an NSMatrix
of NSButtonCell
s. I can use the "Tab" key to tab though the NSTextField
s, but the NSMatrix
gets skipped over.
I want to be able to tab into the NSMatrix
, and tab from one button to the next within the matrix.
I have put in the following line of code, but it is having no effect:
[mtxMyMatrix setTabKeyTraversesCells:YES];
Can anybody help with this problem or point me to an example? I have searched for hours with no success.