I have this piece of code :
TImageView *thumbnailView = [[TImageView alloc] initWithFrame:self.frame];
thumbnailView.delegate = self;
thumbnailView.hidden = NO;
thumbnailView.contentMode = UIViewContentModeScaleAspectFill;
thumbnailView.clipsToBounds = YES;
thumbnailView.urlPath = URLPath;
[self addSubview:thumbnailView];
[thumbnailView release];
where, TImageView is a custom class
Now, when using the leaks instrument, for one instance, one leak, if I click on the extended detail,
I see that 99.6% of memory leakage is because of this line:
thumbnailView.urlPath = URLPath;
I have got no clue. Any help ?