This inspection reports the owned objects stored in the instance variables which are not released.
You take ownership of an object if you:
- create it using a method whose name begins with alloc or new or contains copy
- send it a retain message
- set the value of the property which has the attribute retain or copy and is synthesized with the instance variable
To relinquish ownership of an object you:
- send it a release or autorelease message
- assign nil to the property, that is synthesized with the instance variable
If ARC (Automatic Reference Counting) is on, this inspection is disabled.
If the checkbox below is switched off, you may release the instance variables an ay method of the class. If it's switched on, you may release them
in dealloc, tearDown, applicationWillTerminate:, didTurnIntoFault methods and any method that can be called from them.