Add @autoreleasepool as alternative to NSAutoreleasePool object.

This commit is contained in:
Levi Bostian 2014-01-01 19:01:50 -06:00
parent e4db90a2f9
commit fff847f09e

View File

@ -28,6 +28,8 @@ int main (int argc, const char * argv[])
{
// Create an autorelease pool to manage the memory into the program
NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init];
// If using automatic reference counting (ARC), use @autoreleasepool instead:
@autoreleasepool {
// Use NSLog to print lines to the console
NSLog(@"Hello World!"); // Print the string "Hello World!"
@ -268,6 +270,9 @@ int main (int argc, const char * argv[])
// Clean up the memory you used into your program
[pool drain];
// End of @autoreleasepool.
}
// End the program
return 0;
}