i had once a stupid bug where i forgot to close a db connection. in that case my app just closed because it was running out of memory, you should take a look on your allocations ...
in xcode
Run -> Run with Performance Tools -> allocations
and watch the allocation if they only grow you have to watch you memory management
but this is just a suggestion
|