Possible Duplicate:
Objective-C: With ARC, what's better? alloc or autorelease initializers?
Does ARC automatically turn the autoreleased versions of class initializers into the appropriate non-autorelased versions, or are they still technically being autoreleased?
I don't want to keep memory around any longer than it's absolutely required, so I've gotten in the habit of using alloc/init in almost all circumstances. Now in ARC, I'm wondering if I can just start using the "autorelease" initializers and expect them to act like a non-autorelased versions would behave...
Does anyone have any documentation on where I can find out what happens to autoreleased methods under ARC?