Hi, i want to know how Delegate is differ from object in cocoa any good articles.
Thanks.
Hi, i want to know how Delegate is differ from object in cocoa any good articles.
Thanks.
A delegate is just object that another object sends messages to... when any event happen, so that it can handle application-specific details the original object wasn't designed for. It's a way of customizing behavior without subclassing....