Lets say I display a window like so:
[[TBAddTaskWindowController new] showWindow:self];
Where is the TBAddTaskWindowController o
The same code that instantiated the window controller by sending the new message to the class, just the same as if it had done it by alloc and init messages.
new
alloc
init