I am fairly new to cocoa programming and I would like to ask if anyone can explain me how to -(BOOL)makeFirstResponder:(NSResponder *)responder; method works. I was planning on using it for NSEvent but can anyone show me how to implement it?

I am trying to use the NSResponder class to get me a working -keyDown method.

link|improve this question
2  
You don't implement it. You call it when you want something to become First Responder, or the view that has focus. For example, [[myTextField window] makeFirstResponder:myTextField] – sudo rm -rf Apr 1 '11 at 19:40
feedback

3 Answers

You don't usually implement -makeFirstReponder:, you call it to set the input focus to a view. What is it that you really want to achieve?

link|improve this answer
feedback

I am trying to use the NSResponder class to get me a working keyDown method.

That doesn't make sense. “Use” a class?

If you want to respond to key events, you normally should do that in a view that should be capable of becoming the first responder (see the NSView docs).

See also the Event-Handling Guide, the View Programming Guide, and the video for session 145 (“Key Event Handling in Cocoa Applications”) from the WWDC 2010 session videos (which you should be able to access through your developer account even if you didn't go to WWDC last year).

link|improve this answer
Thanks I think this would work! I was trying this because on another forum they said I needed to use the NSResponder class, to get the keyDown method to work. – Muttur Apr 2 '11 at 12:21
feedback

NSResponder is one of the fundamental classes in Cocoa. Any class that can respond to events like key presses or menu commands should be a subclass of NSResponder. Each responder keeps track of it's "next responder", and each window keeps track of the object that's currently the "first responder". When an event happens in a window, a message is sent to the first responder. If that object handles the message, great. If not, it passes it along to its next responder. This is known as the "responder chain."

Normally, you don't mess much with the responder chain in Cocoa. The first responder is mostly determined by user actions, such as clicking on a control.

It doesn't make sense to 'use it for NSEvent'. NSEvent isn't a responder, but something that enables responders to do their job.

If you describe more clearly what you're trying to accomplish, I'm sure we can point you in the right direction.

link|improve this answer
I updated my question. – Muttur Apr 2 '11 at 8:12
You don't use (call) becomeFirstResponder or resignFirstResponder; the documentation says for each of them “Use the NSWindow makeFirstResponder: method, not this method, to make an object the first responder. Never invoke this method directly.” – Peter Hosey Apr 2 '11 at 11:53
@Peter Hosey, You're quite right! Maybe I've been spending too much time in Cocoa Touch. – Caleb Apr 2 '11 at 12:29
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.