I have an object that is being retained more than necessary (most likely due to a property that is strong
instead of weak
). Big codebase, so it\'s
If you are using ARC you would never get the option to add retain,
and if you have converted the project to ARC using below option, you would be prompted with error
If you have set the property as strong
, then you should allocate the object once through the whole project e.g. self.yourobject = [[NSMutableArray alloc]init];
. There is no shortcut for this.