Differences
This shows you the differences between two versions of the page.
Both sides previous revision Previous revision | |||
docs:programming:cocoa_and_objective-c:autorelease_pools_and_release_retain [2007/06/22 22:52] – billh | docs:programming:cocoa_and_objective-c:autorelease_pools_and_release_retain [2008/08/03 00:25] (current) – external edit 127.0.0.1 | ||
---|---|---|---|
Line 1: | Line 1: | ||
+ | ====== autorelease pools and release/ | ||
+ | |||
+ | ===== Summary of Memory Management Rules ===== | ||
+ | //(taken from " | ||
+ | * Releasing an object can free up its memory, which can be a concern if you're creating many objects during the execution of a program. | ||
+ | * Sending a release message does not necessarily destroy an object. | ||
+ | * The autorelease pool provides for the automatic release of objects when the pool itself is released. | ||
+ | * If you no longer need an object fro within a method but need to return it, send it an autorelease message to mark it for later release. | ||
+ | * When your application terminates, all the memory taken by your objects is released, whether or not they were in the autorelease pool. | ||
+ | * When you develop more sophisticated applications (such as Cocoa applications), | ||
+ | * If you directly create an object using an alloc or copy method (or with an allocWithZone:, | ||
+ | * You don't have to worry about releasing objects that are returned by methods other than those noted in the previous rule. It's not your responsibility; | ||
+ | |||
+ | ===== autorelease pools ===== | ||
+ | * in general, if you use the [ [object alloc] init] method of creating an object in memory, it is up to you to release it | ||
+ | * if you use any other method to create the object, such as a class method (+), it is generally configured to be autoreleased | ||
+ | * you can have multiple autorelease pools, including nested pools | ||
+ | * cocoa gives you an autorelease pool for every program, but a foundation only program does not | ||
+ | * it is generally good practice to use an autorelease pool in each method that needs one | ||
+ | * make sure to distinguish that you are actually creating objects, rather than simply getting a reference to an object in a particular method | ||
+ | * example:< | ||
+ | ... | ||
+ | NSAutoreleasePool *aPool = [[NSAutoreleasePool alloc] init]; | ||
+ | |||
+ | NSArray *filenames = [fm directoryContentsAtPath: | ||
+ | NSMutableArray *fullFilenames = [[NSMutableArray alloc] initWithCapacity: | ||
+ | int i; | ||
+ | for(i=0; i< | ||
+ | NSString *fullPath = [NSString stringWithFormat: | ||
+ | [fullFilenames addObject: | ||
+ | // fullPath is 2, and will be released to 1 after removeAllObjects, | ||
+ | // then autoreleased to 0 if not retained elsewhere | ||
+ | } | ||
+ | |||
+ | [gridView createGridItemViews: | ||
+ | |||
+ | [fullFilenames removeAllObjects]; | ||
+ | [fullFilenames release]; | ||
+ | |||
+ | // the following method call releases the " | ||
+ | [aPool release]; | ||
+ | |||
+ | ... | ||
+ | </ | ||
+ | |||
+ | ===== release/ | ||
+ | * objects have a retainCount, | ||
+ | * to find the retainCount you send the message to the object: (int)[object retainCount] | ||
+ | * to increment the retainCount, | ||
+ | * to decrement the retainCount, | ||
+ | |||
+ | ===== Tips ===== | ||
+ | * adding an object to a mutable array increases the retain count by 1 | ||
+ | * removing an object from a mutable array decreases the retain count by 1 | ||
+ | * adding a view to another view (subview/ | ||
+ | * removing or replacing a subview with another view decreases the retain count by 1 | ||
+ | * if you need to keep an object around, you may need to use [object retain] before some of the methods that decrement the retain count | ||