Does System.gc() work on iOS?
I'm trying to force garage collection in my iOS app, but am not convinced that System.gc() does anything. I've read all the posts about how to use it, have also tried calling it twice:
System.gc();
System.gc();
However from testing it's not apparent that this has any effect.
Can anyone confirm whether or not garbage collection works on iOS? If not, what are options for cleaning up? Are there any?
