hi I have doubts about the xcode 4.2 memory management system. I have read here that in xcode 4 you don’t need to worry about memory allocation and also I am doing a tutorial but I get errors each time I refer to alloc of realease or autorelease, like ARC forbids explicit messages of dealloc or things like that. Shall I from now on ignore all reference to alloc dealloc and release? Or is it better to turn off that ARC thing off?? thks in advance for your advice as i am new to this
Share
remove all release and autorelease function calls. you do not need to call autorelease or release when you select ARC. the iOS will handle it for you