Re: Setting text field as first responder in an NSView
Re: Setting text field as first responder in an NSView
- Subject: Re: Setting text field as first responder in an NSView
- From: Jens Alfke <email@hidden>
- Date: Wed, 01 Jun 2011 10:49:17 -0700
On Jun 1, 2011, at 9:15 AM, Eric Williams wrote:
> I want to set the first responder for the window to be a text field in the NSView after the view is loaded, so that a user can immediately start typing into the field.
After the view is loaded into the window, call
[window makeFirstResponder: textField];
You may also need to call [window recalculateKeyViewLoop] to tell the window to update the tab order of focusable controls in the window (unless you set the checkbox in IB on the window to have it do this automatically.)
—Jens
Attachment:
smime.p7s
Description: S/MIME cryptographic signature
_______________________________________________
Cocoa-dev mailing list (email@hidden)
Please do not post admin requests or moderator comments to the list.
Contact the moderators at cocoa-dev-admins(at)lists.apple.com
Help/Unsubscribe/Update your Subscription:
This email sent to email@hidden