#ios
#iOS
Вопрос:
Я пытаюсь освободить память своих приложений и хочу полностью удалить loadingImageView из памяти при нажатии кнопки. Как мне это сделать?
-(IBAction)animationOneStart {
NSMutableArray *images = [[NSMutableArray alloc] initWithCapacity:88];
for(int count = 1; count <= 88; count )
{
NSString *fileName = [NSString stringWithFormat:@"testPic1_d.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?
}
Спасибо!
Комментарии:
1.
loadingImageView.animationRepeatCount = 0; //Repeats indefinitely
Ответ №1:
ОК. Если вы хотите удалить анимацию UIImageView, попробуйте это:
-(IBAction)removeFromMemory {
[loadingImageView stopAnimating]; //here animation stops
[loadingImageView removeFromSuperview]; // here view removes from view hierarchy
[loadingImageView release]; loadingImageView = nil; //clean memory
}
Для удаления CoreAnimation из экземпляра UIView используйте метод:
[view.layer removeAllAnimations];
Комментарии:
1. Не забудьте добавить
QuartzCore
фреймворк и#import <QuartzCore/QuartzCore.h>