What is a responder chain?
Answer / Avnesh Kumar Gupta
A responder chain in Objective-C is a sequence of objects that are searched for a method implementation. When a message is sent to an object, the runtime begins searching for the method in the receiver. If it's not found, it looks in the receiver's superclass, then the superclass's superclass, and so on up the hierarchy until Objective-C finds the method or reaches NSObject. Responder chains are essential for event handling and delegate design pattern in Cocoa.
| Is This Answer Correct ? | 0 Yes | 0 No |
What do you mean by late binding?
What is iomanip c++?
What is object in c++ wikipedia?
What are raw sockets, where they are efficient?
What is Memory Alignment?
Differentiate between late binding and early binding.
What will happen if when say delete this ?
What are the various compound assignment operators in c++?
Write about the use of the virtual destructor?
What is object file? How can you access object file?
Is java based off c++?
What is size of Empty Class?