i am upgrading an iOS 4 project to use it with ARC with the sdk5. So i want to use the automatic refactor method for converting the code to use ARC. Unfortunately it does´t
id is a type, not an object. That means that id shouldn't be a pointer. Remove the * to fix it.
id
*
for(id child in childObjectArray){ [child removeParentGroupReferences]; }
Change id* to id. id is already defined as an object pointer.
id*