Reputation: 5602
Hi friends i am working on Location Finder Application in which everytime when i goes into Map page i get Warnings Like :
"Received memory warning. Level=1"
After that application crashes no idea what to do please help me.
Thanks in Advance.
Upvotes: 2
Views: 1171
Reputation: 1484
This means you have very serious memory leaks. So you will want use instrument - memory leak to find them and fix them. A good thing to do before that is go to your xcode menu, Product - Analyze to find all the obvious memory issues first.
Sometimes you can also try set up break points to figure out where the crash come from if the results from the Analyze and instrument - memory leaks doesn't make much sense.
No matter what I guess you have to learn how to use instrument. You cannot get away with it.
Hope this helps.
Upvotes: 2