views:

90

answers:

2
A: 

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
Is it possible that that method is invoked by another method?Because I definitely never typed a "performSelector" method...
Chromium
A: 

... 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:

  1. Uninitialised property/variable.
  2. De-allocated (non-retained) property

Have your controls in interface builder been connected to the IBActions?

ohhorob
Thanks- I fixed the problem- apparently, it was the IBActions that was causing the app to crash, I guess you can't have IBActions with an App Delegate.
Chromium