I noticed that there are differences in memory management in iOS simulator and iOS devices. Sometimes on the device there is a crash because of trying to access an object that doesn't exist any more, while on the simulator it doesn't appear (object still isn't collected).
Now I have a problem, when on the simulator view doesn't appear (probably gets deallocated), while on the device everything is okay. I'm guessing it also has something to do with the memory management.
Where can get a deeper understanding of the differences between the memory management on the device and on the simulator? And also other device/simulator differences.
P.S. I'm aware of the similar question: Difference of memory organization between iOS device and iPhone simulator But the answers on this question don't give an understanding what's happening, just the information about the memory warnings.