ARC & Memory managment in my app?

This depends on what the ivar startScreen is. If startScreen is defined as a strong ivar in your view controller, then it will have a refcount of 1 after allocation, and a refcount of 2 after you set it as a subview in your view hierarchy. Then, removing the view from its superview will only reduce the refcount to 1 and you'll have to explicitly nil the variable to dealloc it.

If you would like more visibility into what's preventing your view from being released, you should Profile your app using Instruments' Allocations template. This will tell you the call site of every retain and release, including those performed by ARC and the system frameworks. If your views are being instantiated from a XIB file, to a certain degree, the system frameworks control their lifetimes.

I cant really gove you an answer,but what I can give you is a way to a solution, that is you have to find the anglde that you relate to or peaks your interest. A good paper is one that people get drawn into because it reaches them ln some way.As for me WW11 to me, I think of the holocaust and the effect it had on the survivors, their families and those who stood by and did nothing until it was too late.

Related Questions