If i create a simple class like this
@interface table : NSObject {
NSMutableArray *array;
}
@end
and in the Init method I call: array = [[NSMUtableArray alloc] init];
and in the dealloc method I call: [array release];
but I have a memory leek because the dealloc method is never called. I must call the dealloc method by myself?
thx, Alex