Sounds like your program is crashing on an object call. So somewhere in your code you are doing an operation on an object using a method that doesn't exist. If you aren't getting any warnings in your code about an object that might not respond to a call, then you might be calling an object that you released from memory before you meant to.
|