Re: Editable fields in a borderless window
Re: Editable fields in a borderless window
- Subject: Re: Editable fields in a borderless window
- From: Robert Clair <email@hidden>
- Date: Thu, 15 Sep 2005 18:18:07 -0400
You have to subclass NSWindow and override [NSWindow
canBecomeKeyWindow] to return YES in your custom class:
- (BOOL) canBecomeKeyWindow
{
return YES;
}
The default implementation returns NO for a borderless window.
...Bob Clair
_______________________________________________
Do not post admin requests to the list. They will be ignored.
Cocoa-dev mailing list (email@hidden)
Help/Unsubscribe/Update your Subscription:
This email sent to email@hidden