I have a combo box with a array of items in string. After i click the arrow to show all the items, i want when i press a key which represent first letter of a item then the respective item will be selected (item is highlighted and NSComboBoxSelectionDidChangeNotification is posted). TextField of combobox is set to not be editable in this case.
I'm new to cocoa and objective and I don't know how to implement this. I try to implement all methods of NSComboBoxDataSource protocol but the item is highlighted without any notification when i input text to textfield of combobox which is then editable (just a try because i want it isn't editable).
Any suggestion would be appreciated.