I\'m really pulling my hair out on this one, it seems that I\'m having severe issues with memory management on an iOS app.
Here\'s the case: first I load table. When the
Are you using imageNamed to load your images - this method will keep all images cached in memory. Try initWithContentsOfFile instead.
imageNamed
initWithContentsOfFile
Watch out though; initWithContentsOfFile: won't cache at all so if you use this method a lot for the same image then you should be using imageNamed:!
initWithContentsOfFile:
imageNamed: