How do tools stop working automatically?

I am trying to control distribution through Tools.

However, when I run to the point sending a few jabber-msg, the tools stop working automatically.

I wonder how to stop it.

Is there any code in the application that can stop the tools?

+6
debugging iphone allocation instruments
source share
2 answers

I also ran into this problem. The answer I got is that the tools stop working if your memory usage is too large. Turn on Allocations and look at memory usage. In my application, I called web services that downloaded some heavy data, due to which the memory consumption of my application reached 60-70 MB (for an iPad application). This led to a device malfunction.

So I had to put some memory fixes. I was able to reduce it to 12 MB. And then the tools resumed to work normally. Hope this helps.

+1
source share

It may also be as @Cory Kilger suggests, and the application crashes.

Try running it outside of the tools.

Good luck :)

0
source share

All Articles