what is Responder chain in iPhone SDK ?? How it works? -


what responder chain in iphone sdk ?? how works ?

see documentation:

if first responder [to event or action message] cannot handle event or action message, forwards “next responder” in linked series called responder chain. responder chain allows responder objects transfer responsibility handling event or action message other objects in application.
if object in responder chain cannot handle event or action, resends message next responder in chain. message travels chain, toward higher-level objects, until handled. if isn't handled, application discards it.


Comments

Popular posts from this blog

C#: Application without a window or taskbar item (background app) that can still use Console.WriteLine() -

c++ - Convert big endian to little endian when reading from a binary file -

openssl - Load PKCS#8 binary key into Ruby -