What is the difference between Memory Profiling and Memory leak fixing in Objective C or in any Programming language?
Any help appreciated in advance, Thank You.
What is the difference between Memory Profiling and Memory leak fixing in Objective C
Share
Memory Profiling is the process of determining how memory is being used by your application. This could include searching for memory leaks, but would also encompass determining how much memory non leaked objects are using.
Memory leak fixing, is specifically tracking down and fixing memory leaks. These are where you have objects on the heap with no references pointing at them. They can’t be used for anything, and are therefore reducing the amount of overall memory your application has available to it.