My project is ARC enabled. I have a class which is direct subclass of NSObject and my class has an NSArray(Strong reference). How can I release my array?
My understanding
In ARC no need of releasing objects
set nil to my NSArray(Strong reference) in dealloc method
- set nil to my NSArray(Strong reference) in viewDidUnload incase of view controller
This is the correct way of releasing my NSArray? If It's not then what is the correct approach?