Tabbing into NSTableView finally solved!!
Tabbing into NSTableView finally solved!!
- Subject: Tabbing into NSTableView finally solved!!
- From: Pierre-Olivier Latour <email@hidden>
- Date: Sat, 07 Sep 2002 19:40:58 +0200
Hi,
For those who haven't noticed: here's how to make your NSTableView become
first responder when the user presses tab: simply subclass NSTableView and
add this:
- (BOOL) needsPanelToBecomeKey
{
return YES;
}
I just found this in the AppKit release notes:
http://developer.apple.com/techpubs/macosx/ReleaseNotes/AppKit.html
I don't if it works under 10.1 though. Anyone could give a try?
_____________________________________________________________
Pierre-Olivier Latour email@hidden
Lausanne, Switzerland
http://www.pol-online.net
_______________________________________________
cocoa-dev mailing list | email@hidden
Help/Unsubscribe/Archives:
http://www.lists.apple.com/mailman/listinfo/cocoa-dev
Do not post admin requests to the list. They will be ignored.