Somewhere in your code, you are invoking [iSearchAppDelegate performSelector:withObject:withObject:]
. You haven't shown that code here but that's likely where the problem is.
Matt Gallagher
2010-06-13 05:57:14
Somewhere in your code, you are invoking [iSearchAppDelegate performSelector:withObject:withObject:]
. You haven't shown that code here but that's likely where the problem is.
... message sent to deallocated instance ...
If it is memory management, my first step would be to enable NSZombie
and discover what was being messaged after being dealloc'ed. Two obvious things I can think of:
Have your controls in interface builder been connected to the IBAction
s?