I need to know about the usage of delegate methods in Objective-C. Can anyone point me to the correct source?
|
|
You will want to declare a delegate protocol for your class. An example of a delegate protocol and interface for class
Don't forget to synthesize your properties in the What this code did was declare a protocol called FooDelegate; a class that conforms to this protocol would be declared like
Now, your class is prepared to receive messages from |
|||||||||||||
|
|
Delegates are very useful to control transfer within the array of view controllers in app manually. Using delegates you can manage the control flow very well. here is small example of own delegates....
SampleDelegate.h
also add above DelegateName in Delegate Reference < >
|
||||
|
|
|
If the object(s) in question has its This is something you should pick up in the first couple of intros and tutorials to cocoa touch. Like this tutorial from Cocoa is my Girlfriend. In fact they made the |
|||
|
|
|
To start, you can take a look at what Apple has to say about delegate methods. The documentation provides some well written information about what delegation is all about, and explains both how to use AppKit classes that define and support a delegate and how to code delegate support into one of your own objects. See Communicating With Objects (If you're interested in coding your own delegate support, skip down to the "Implementing a Delegate for a Custom Class" section.) The most significant aspect to take away from delegate methods is that they enable you to customize and affect the behavior of an object without the need to subclass it. Hope that helps you get started. |
||||
|
|

