我正在尝试释放应用程序的内存,并希望在我点击按钮时从内存中完全删除loadingImageView。我该怎么做呢?

-(IBAction)animationOneStart {

NSMutableArray *images = [[NSMutableArray alloc] initWithCapacity:88];

for(int count = 1; count <= 88; count++)
{
    NSString *fileName = [NSString stringWithFormat:@"testPic1_%03d.jpg", count];
    UIImage  *frame    = [UIImage imageNamed:fileName];
    [images addObject:frame];
}

loadingImageView.animationImages = images;

loadingImageView.animationDuration = 5;
loadingImageView.animationRepeatCount = 1; //Repeats indefinitely

[loadingImageView startAnimating];
[images release];

}

-(IBAction)removeFromMemory {

//What do I add here?

}


谢谢!

最佳答案

好。如果要删除UIImageView动画,请尝试以下操作:

-(IBAction)removeFromMemory {
    [loadingImageView stopAnimating];    //here animation stops
    [loadingImageView removeFromSuperview];    // here view removes from view hierarchy
    [loadingImageView release]; loadingImageView = nil;    //clean memory
}




要从UIView实例中删除CoreAnimation,请使用方法:

[view.layer removeAllAnimations];

10-08 06:29