In Xcode 4.2, does @autoreleasepool replace [pool drain]; and do I still need to allocate like so:
Person *Jay = [[Person alloc] init];
|
In Xcode 4.2, does
|
||||
|
|
|
This
Is equivalent to
ARC still requires you to do either
or
Under ARC there is no difference from the casual programmer perspective. Underneath, in the compiled code, the object returned by If you are not using ARC then you will later have to call |
|||||||||||||
|