Why does Xcode 4.2 use @autoreleasepool in main.m instead of NSAutoreleasePool?
Asked Answered
S

1

15

I've noticed that there is a different way in Xcode 4.2 to start the main function:

int main(int argc, char *argv[])
{
    @autoreleasepool {
        return UIApplicationMain(argc, argv, nil,
                                 NSStringFromClass([PlistAppDelegate class]));
    }
}

and

int main(int argc, char *argv[]) {
    NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init];
    int retVal = UIApplicationMain(argc, argv, nil, nil);
    [pool release];
    return retVal;
}

Does anybody know the difference between those two?

Sarge answered 3/1, 2012 at 15:54 Comment(1)
It is called ARC (clang.llvm.org/docs/AutomaticReferenceCounting.html)Hanhana
H
15

The first one is using ARC, which is implemented in iOS5 and above to handle memory management for you.

On the second one, you're managing your own memory and creating an autorelease pool to handle every autorelease that happens inside your main function.

So after reading a bit on what's new on Obj-C with iOS5 it appears that the:

@autoreleasepool {
    //some code
}

works the same as

NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init];
// some code
[pool release];

with the difference that the last one would throw an error on ARC.

EDIT:

The first one is using ARC or not.

Hemihydrate answered 3/1, 2012 at 15:57 Comment(3)
Note that @autoreleasepool is a new kind of statement available in Objective-C and may be used regardless of ARC. See 1 2Bamako
@autoreleasepool is the way to go now. From Apple's "Transitioning to ARC Release Notes": This syntax is available in all Objective-C modes. It is more efficient than using the NSAutoReleasePool class; you are therefore encouraged to adopt it in place of using the NSAutoReleasePool.Sabella
so this answer is wrong. "The first one is using ARC" It may not be using ARCCurdle

© 2022 - 2024 — McMap. All rights reserved.