2009-11-12 78 views
0

我很難解除分配包含圖像的UISCrollView。 我的代碼有問題,但我不明白在哪裏。iphone內存釋放問題與滾動視圖內的圖像

這是我的代碼片段。它基本上創建一個循環,添加一個圖像的uiscrollview並刪除。 如果您使用儀器運行代碼,則不會釋放內存。 我還加了一些檢查的retainCount,沒有運氣可言..

這裏的代碼

- (void)loadView { 
[super loadView]; 
CGRect theRect = CGRectMake(0, 0, 320, 480); 
UIView *view = [[UIView alloc] initWithFrame:theRect]; 
[view setBackgroundColor:[UIColor purpleColor] ]; 
self.view = view; 
[view release]; 

UIView *pippo = [[UIView alloc] initWithFrame:theRect]; 
[pippo setBackgroundColor:[UIColor redColor]]; 
[self.view addSubview:pippo]; 
[pippo release]; 

[self performSelector:@selector(scrollAdd:) withObject:nil afterDelay:2.0f]; 
} 



-(void)scrollAdd:(id)o { 
CGRect theRect = CGRectMake(0, 0, 320, 480); 
int numero = 1; 
scroll = [[UIScrollView alloc] initWithFrame:theRect]; 
[scroll setContentSize:CGSizeMake(320*numero,1)]; 
[scroll setScrollEnabled:YES]; 

UIImage *img = [UIImage imageWithContentsOfFile: [[NSBundle mainBundle] pathForResource:@"koala1b" ofType:@"jpg"]]; 
int dd = [img retainCount]; 
UIImageView *v2 = [[UIImageView alloc] initWithFrame:theRect]; 
[v2 setImage:img]; 
[scroll addSubview:v2]; 
dd = [v2 retainCount]; 
[v2 release]; 
dd = [v2 retainCount]; 
dd = [img retainCount]; 
[self.view addSubview:scroll]; 
[img release]; 
dd = [img retainCount]; 

[self performSelector:@selector(scrollRemove:) withObject:nil afterDelay:2.0f]; 
} 

-(void)scrollRemove:(id)o { 
int dd = [scroll retainCount]; 
UIImageView *theV = [[scroll subviews] objectAtIndex:0]; 
dd = [theV retainCount]; 
[scroll removeFromSuperview]; 
dd = [theV retainCount]; 
[theV release]; 
dd = [theV retainCount]; 
dd = [scroll retainCount]; 
scroll = nil; 
[self performSelector:@selector(scrollAdd:) withObject:nil afterDelay:2.0f]; 
} 

回答

1

的問題是,你是釋放IMG時你不應該(這可能是被屏蔽通過視圖層次永遠不會被釋放),並且當你應該的時候你不會釋放滾動。

-(void)scrollAdd:(id)o { 
CGRect theRect = CGRectMake(0, 0, 320, 480); 
int numero = 1; 
scroll = [[UIScrollView alloc] initWithFrame:theRect]; 
[scroll setContentSize:CGSizeMake(320*numero,1)]; 
[scroll setScrollEnabled:YES]; 

UIImage *img = [UIImage imageWithContentsOfFile: [[NSBundle mainBundle] pathForResource:@"koala1b" ofType:@"jpg"]]; 
int dd = [img retainCount]; 
UIImageView *v2 = [[UIImageView alloc] initWithFrame:theRect]; 
[v2 setImage:img]; 
[scroll addSubview:v2]; 
[v2 release]; 
[self.view addSubview:scroll]; 
[img release]; 
dd = [img retainCount]; 

[self performSelector:@selector(scrollRemove:) withObject:nil afterDelay:2.0f]; 
} 

這應該是:

-(void)scrollAdd:(id)o { 
    CGRect theRect = CGRectMake(0, 0, 320, 480); 
    int numero = 1; 
    scroll = [[UIScrollView alloc] initWithFrame:theRect]; 
    [scroll setContentSize:CGSizeMake(320*numero,1)]; 
    [scroll setScrollEnabled:YES]; 

    UIImage *img = [UIImage imageWithContentsOfFile: [[NSBundle mainBundle] pathForResource:@"koala1b" ofType:@"jpg"]]; 
    UIImageView *v2 = [[UIImageView alloc] initWithFrame:theRect]; 
    [v2 setImage:img]; 
    [scroll addSubview:v2]; 
    [v2 release]; 
    [self.view addSubview:scroll]; 

    [self performSelector:@selector(scrollRemove:) withObject:nil afterDelay:2.0f]; 
} 

當然,如果你這樣做,你需要也使您的視圖去除路徑略有變化:

-(void)scrollRemove:(id)o { 
    [scroll removeFromSuperview]; 
    [scroll release]; 
    scroll = nil; 

[self performSelector:@selector(scrollAdd:) withObject:nil afterDelay:2.0f]; 
} 
1

我已經基本達成與@Louis的結論相同,但也在代碼中對我刪除的內容和原因做了一些評論。

- (void)loadView { 
[super loadView]; 
CGRect theRect = CGRectMake(0, 0, 320, 480); 
UIView *view = [[UIView alloc] initWithFrame:theRect]; 
[view setBackgroundColor:[UIColor purpleColor] ]; 
self.view = view; 
[view release]; 

UIView *pippo = [[UIView alloc] initWithFrame:theRect]; 
[pippo setBackgroundColor:[UIColor redColor]]; 
[self.view addSubview:pippo]; 
[pippo release]; 

[self performSelector:@selector(scrollAdd:) withObject:nil afterDelay:2.0f]; 
} 



-(void)scrollAdd:(id)o { 
    CGRect theRect = CGRectMake(0, 0, 320, 480); 
    int numero = 1; 
    scroll = [[UIScrollView alloc] initWithFrame:theRect]; 
    [scroll setContentSize:CGSizeMake(320*numero,1)]; 
    [scroll setScrollEnabled:YES]; 

    // img is already autoreleased, you're releasing again down below 
    // --- UIImage *img = [UIImage imageWithContentsOfFile: [[NSBundle mainBundle] pathForResource:@"koala1b" ofType:@"jpg"]]; 
    UIImageView *v2 = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"koala1b.jpg"]]; 
    v2.frame = theRect; 
    //--- [v2 setImage:img]; 
    [scroll addSubview:v2]; 
    [v2 release]; 
    [self.view addSubview:scroll]; 
    // NO !; img is autoreleased from imageWithContentsOfFile 
    //--- [img release]; 

    [self performSelector:@selector(scrollRemove:) withObject:nil afterDelay:2.0f]; 
} 

-(void)scrollRemove:(id)o { 
    //--- UIImageView *theV = [[scroll subviews] objectAtIndex:0]; 
    [scroll removeFromSuperview]; 
    // you don't own theV because you didn't create it here, or send it a retain. So NO release 
    // it also appears that you think you're responsible for releasing or cleaning up 
    // a view's subviews. NO. Just call [scroll removeFromSuperview] and let scroll view 
    // clean it's own resources. 
    //--- [theV release]; 
    [scroll release]; 
    scroll = nil; 
    [self performSelector:@selector(scrollAdd:) withObject:nil afterDelay:2.0f]; 
} 
+0

謝謝,您的解決方案不會增加內存使用量! 這真的很有用 – 2009-11-12 14:26:31