|
|
#1 |
|
about memory managing--dealloc & autorelease
Code:
// Controller.h
#import <Cocoa/Cocoa.h>
@interface Controller : NSObject {
IBOutlet NSImageView *imageView;
NSMutableArray * images;
int currentImage;
}
- (IBAction)nextImage:(id)sender;
@end
// Controller.m
#import "Controller.h"
@implementation Controller
- (void)awakeFromNib
{
NSBundle * mainBundle = [NSBundle mainBundle];
NSArray * imagePaths = [mainBundle pathsForResourcesOfType:@"jpg"
inDirectory:nil];
images = [[NSMutableArray alloc] init];
int count = [imagePaths count];
int i;
for (i = 0; i < count; i++) {
NSImage * image = [[NSImage alloc] initWithContentsOfFile:
[imagePaths objectAtIndex:i]];
[images addObject:image];
[image release];
}
currentImage = 0;
[imageView setImage:[images objectAtIndex:currentImage]];
}
- (IBAction)nextImage:(id)sender
{
currentImage++;
if (currentImage == [images count]) { // a
currentImage = 0;
}
[imageView setImage:[images objectAtIndex:currentImage]]; // b
}
@end
My question is : 1 there is a instance variable that owned by this class. It is allocated in the awakefromnib method. Should I override the dealloc method to release this instance variable? 2 If I did so, it seems that the application did not invoke the dealloc method at all. I wonder why. 3 if i add a [images autorelease] in the awakefromnib method for later release, an error occurred when i hit the next button. That means the images has been released. but it should be added to the autoreleasepool and then get released when application terminate. things work properly in command line utility. why didn't it work here? |
|
|
|
0
|
|
|
#2 | |||
|
Quote:
Quote:
Quote:
With a command line tool, you generally create and release your own autorelease pools. The template and most examples of this involve just one autorelease pool which is released right before the application terminates. This is probably why you think all autoreleases happen when any application terminates, which is not the case (especially when using AppKit) Last edited by eddietr; Feb 15, 2009 at 01:39 AM. |
||||
|
|
0
|
|
|
#3 |
|
Grate explanation. thank you.
but the answer to question 2. i am still not quit understand. Why it didn't release properly. how can i improve it. and other example provided by the book mentioned above seems that don't invoke the dealloc at all. i also read: Note that when an application terminates, objects may not be sent a dealloc message since the process’s memory is automatically cleared on exit—it is more efficient simply to allow the operating system to clean up resources than to invoke all the memory management methods.--NSObject Class Reference i am puzzled |
|
|
|
0
|
|
|
#4 |
|
If you need to do cleanup on application shutdown, use NSApplication's -applicationWillTerminate: delegate method rather than relying on dealloc. As an optimization, Cocoa won't always deallocate objects at shutdown since it knows they're about to go away anyway.
|
|
|
|
0
|
|
|
#5 |
|
thank you. and your logo is pretty.
|
|
|
|
0
|
|
|
#6 |
|
Gc?
Hi,
have you turned garbagge collection on or is it still off? Peter |
|
|
|
0
|
|
|
#7 | |
|
Quote:
If you use your controller for the entire lifetime of your application then you may never get the dealloc call. Because when the application terminates, it doesn't go through and dealloc every object because that would be a waste of time. Once the application is terminated, the OS is going to reclaim all it's memory anyway. But, on the other hand, if your controller is not supposed to last the whole lifecycle of the application, then you can release it when it is not needed. Then when the release count is 0, your controller will get the dealloc message which in turn will release other objects. Hope that makes sense? |
||
|
|
0
|
|
|
#8 |
|
thank you so much. it really makes sense.
|
|
|
|
0
|
![]() |
|
«
Previous Thread
|
Next Thread
»
| Thread Tools | Search this Thread |
| Display Modes | |
|
|
Similar Threads
|
||||
| thread | Thread Starter | Forum | Replies | Last Post |
| Intel Macs more forgiving about memory quality? | Heb1228 | Mac Pro | 6 | Mar 19, 2006 06:55 PM |
| Question about Memory | iMacSE500 | Buying Tips, Advice and Discussion (archive) | 3 | Aug 20, 2005 04:16 PM |
| a question about memory.. | jhomayne | Mac Basics and Help | 7 | Jul 19, 2005 02:20 PM |
| Questions about memory upgrade | Loft | Buying Tips, Advice and Discussion (archive) | 8 | Mar 30, 2005 01:17 AM |
All times are GMT -5. The time now is 02:33 AM.








Linear Mode

