The text of this article is not in this database — only its details are. Read it on the old site: iPhone Memory Leaks Tracking and Use of Instruments
8 Comments
Join the conversation! Your thoughts help the community grow.
Sign in to leave a comment.

Sonu ChaudharyPosted Mar 18, 2016, 3:04 PM
good
Sr KarthigaPosted Feb 19, 2016, 5:46 AM
good one
Sr KarthigaPosted Feb 19, 2016, 5:46 AM
Nice Explanation
Monish BansalPosted Feb 19, 2013, 6:07 AM
Yes we check memory leaks in every app. Initial load time is default and we cant change it. And in some cases app can crash due to high memory use. an example if you check Image album in facebook app and change image frequently then app will crash because it saves images in cache and app will crash. This is the limitation of smart phone devices.
Mahesh ChandPosted Feb 15, 2013, 12:46 PM
Great informative article. Now question is, can you build app smart enough not to crash and know there are memory leaks and close the leaks or that function. As a user, there are two things you do not want. Wait for app to load (initial load, or any screen or any data) and second crash. I am aware that iOS will close your app if it does not respond within certain time (seconds, not sure actual time).
Sachin BhardwajPosted Feb 15, 2013, 7:01 AM
Nice article it is really helpful for beginner in ios technology... Thanks Monish sir!!
Monish BansalPosted Feb 14, 2013, 10:29 PM
In This condition app will not have free memory and it will show memory warning. and sometime app can be crash or app performance will very low.
Sam HobbsPosted Feb 14, 2013, 5:23 PM
There are actually many possible causes of memory leaks. The most common probably is when the programmer simply forgets to do the delete/free. Sometimes it is conditional in the sense that a function might be returned from prior to the end of the function and the memory is not freed whereas it is freed at the end of the function.