ARC is great progress in the Objective-c development, but you have to be really careful with the memory management, even when you use ARC.
I suggest that you watch the WWDC 2011 video about ARC to do a great use of this feature, because you need to watch some details to really do not waste the memory of the device.
The most important points to you get the best of ARC, is to make sure you does not have circular references, such as one controller reference another controller, and both have strong references, when you think you destroyed one controller, the other will retain it, and then you will have no memory freed by it.
The other important point, is that you need to be sure that you told the compiler that you will not need more an object, this is why you need to set the array to nil, so the compiler will just add the command to release the array, because ARC is just Automatic Reference Counting, and it is done by the compiler, and not in runtime. Now your compiler add the release calls to you.
So answering your points:
1 - You always need to care about memory, because arc has some rules that must be obey, like set to nil the object that you are not using anymore.
2 - In your example you will need to take care about some points, first you will need to be sure that you does not have an reference to your second window, and also you will need to set to nil your array, because Objective-c has not garbage collector, just now the reference counting is not explicit anymore.
dealloc.. ARC will automatically release these ivars ondealloc– s1m0n Nov 27 '12 at 17:12malloc(), you'll have to deallocate it yourself. – MrMage Nov 27 '12 at 17:21