CocoaDev

Edit AllPages

See http://www.stepwise.com/Articles/Technical/2000-03-03.01.html for a thorough explanation of Delegates and Notifications.

See also CreatingObjectThatWillUseADelegate, for a discussion of declaring your delegate methods in an informal protocol


How do I make my own custom class do delegation?


Something along the lines of this:

@interface MyOwnCustomClass : NSObject { id delegate; }

// pre-declare your delegate methods – MikeTrent @interface NSObject (MyOwnCustomClassDelegateMethods)

@implementation MyOwnCustomClass

// it’s normally better to use NSObject’s -init method to initialize, and define the following: // - (id)delegate { return delegate; } // - (void)setDelegate:(id)del { delegate = del; } // but this is ok for an example. – MikeTrent

– ThomasCastiglione


Made a few notes in the code above, to cover more detail of how delegates should be implemented. See also InformalProtocols, FormalProtocols – MikeTrent


Mike, doesn’t this class need to retain its delegate? It would seem to me like when you programatically create a delegate autoreleasing the delegate object before giving it to the delegate is the only way to really make sure that it’ll get deallocated. It’s not always the case you set a delegate from IB. At the very worst, you do a bit of extra work.

– DaveFayram

Retain? Nope. Although I’m having trouble following this sentence: “when you programatically create a delegate autoreleasing the delegate object before giving it to the delegate is the only way to really make sure that it’ll get deallocated” ow ow ow ow ow!!! - HAHAHAHAHAHA!!! At least someone has a sense of humor.

An object does not “take ownership” of its delegate. We can say that every Objective C object ultimately is “owned” by another object (or objects!). When I program in Objective C I try to keep this relationship in mind at all times. I might create a string and assign it to an ivar, making the ivar’s object the string’s owner. I might alloc/init an object, assign it to an NSMutableArray, and then release the object, thereby making the NSMutableArray the object’s owner. Singleton objects own themselves.

Delegate objects are usually controller objects, like NSWindowController, NSDocument, or NSObject controllers created in IB. All of those objects are “owned” by someone: the window controller is owned by its document, the document is owned by the shared NSDocumentController (which owns itself, since it’s a singleton), the NSObject subclass is owned by its nib file.

If objects were to start retaining their delegates, you could easily end up leaking memory:

@interface Delegator : NSObject { id mDelegate; }

@end

@implementation Delegator

@end

@interface Delegatee : NSObject { Delegator *mDelegatorObject; }

@end

@implementation Delegatee

@end

int main() { [[NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init]; Delegatee *foo = Delegatee alloc] init]; [foo release]; [pool release]; }

Let’s walk through it. main creates a Delegatee instance, which in turn creates a Delegator instance. The Delegator instance retains the Delegatee, meaning the Delegatee has a retain count of 2 (main() and Delegator are both owners) and Delegator has a retain count of 1 (Delegatee owns it). When main() releases Delegatee, its retain count goes down to 1, therefore it does not get released. Oops!! You just leaked memory!! I hope we exit soon!!

So by convention, objects do not retain their delegates, since they do not want to “take ownership” of that object. The idea is the delegate object is supposed to “unregister” itself before it is destroyed.

@interface Delegator : [[NSObject { id mDelegate; }

@end

@implementation Delegator

@end

@interface Delegatee : NSObject { Delegator *mDelegatorObject; }

@end

@implementation Delegatee

@end

int main() { [[NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init]; Delegatee *foo = Delegatee alloc] init]; [foo release]; [pool release]; }

Here main creates and owns Delegatee, which creates and owns Delegator. When main frees Delegatee, it frees Delegator. No leaks, no muss, no fuss.

Note that this idea of unregistering before you are destroyed is also true of notifications. If an object registers with [[NSNotificatonCenter saying it wants to receive notifications, it must unregister before the object is destroyed. Otherwise, NSNotificationCenter wll attempt to send a notification to an object that’s been deallocated, causing an immediate, painful crash.

– MikeTrent


I use this code to set my class as the delegate for NSApplication. Useful when overriding (void)applicationWillTerminate:(NSNotification*)aNotification, etc.

[[NSApplication sharedApplication] setDelegate:self];

putting that line in the ur .m file (usually in the init) tells NSApplication that your class is a delegate. then you can override NSApp’s stuff. i’m not sure if this code is frowned upon, but it has worked for me so far. please comment if there is something terrible about doing it this way.

–greg


A much easier way to accomplish this is to simply connect the delegate outlet of File’s Owner in MainMenu.nib to your controller.

assuming the controller is instantiated in the nib. and to the greg who posted the code above: you’re not overriding anything, you’re just implementing one of NSApplication’s delegate messages.