mirror of
https://github.com/adambard/learnxinyminutes-docs.git
synced 2024-12-23 17:41:41 +00:00
Add @autoreleasepool as alternative to NSAutoreleasePool object.
This commit is contained in:
parent
e4db90a2f9
commit
fff847f09e
@ -28,7 +28,9 @@ int main (int argc, const char * argv[])
|
|||||||
{
|
{
|
||||||
// Create an autorelease pool to manage the memory into the program
|
// Create an autorelease pool to manage the memory into the program
|
||||||
NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init];
|
NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init];
|
||||||
|
// If using automatic reference counting (ARC), use @autoreleasepool instead:
|
||||||
|
@autoreleasepool {
|
||||||
|
|
||||||
// Use NSLog to print lines to the console
|
// Use NSLog to print lines to the console
|
||||||
NSLog(@"Hello World!"); // Print the string "Hello World!"
|
NSLog(@"Hello World!"); // Print the string "Hello World!"
|
||||||
|
|
||||||
@ -267,6 +269,9 @@ int main (int argc, const char * argv[])
|
|||||||
|
|
||||||
// Clean up the memory you used into your program
|
// Clean up the memory you used into your program
|
||||||
[pool drain];
|
[pool drain];
|
||||||
|
|
||||||
|
// End of @autoreleasepool.
|
||||||
|
}
|
||||||
|
|
||||||
// End the program
|
// End the program
|
||||||
return 0;
|
return 0;
|
||||||
|
Loading…
Reference in New Issue
Block a user