Сбой приложения при захвате изображения

Я захватываю изображения в приложении, и мое приложение получает предупреждение о полученной памяти и сбой приложения. Ниже приведен код, который я использую ... пожалуйста, помогите. это приложение похоже на выбор изображений из галереи и добавление к ним анимации. во время работы анимации будет захватывать изображения и делать их видео.

Я получаю предупреждение о памяти при захвате изображений во время анимации.

-(void)captureImage:(NSTimer*) t {
NSLog(@"captureImage");


// Create a graphics context with the target size
// On iOS 4 and later, use UIGraphicsBeginImageContextWithOptions to take the scale into  consideration
// On iOS prior to 4, fall back to use UIGraphicsBeginImageContext
CGSize imageSize = CGSizeZero;

UIInterfaceOrientation orientation = 
[UIApplication    sharedApplication].statusBarOrientation;
if (UIInterfaceOrientationIsPortrait(orientation)) {
    imageSize = [UIScreen mainScreen].bounds.size;
    NSLog(@"imageSize:%@  ",NSStringFromCGSize(imageSize));
} else {
    imageSize = 
 CGSizeMake([UIScreen mainScreen].bounds.size.height, 
 [UIScreen mainScreen].bounds.size.width);
//CGSizeMake(animatedImgView.frame.size.width, animatedImgView.frame.size.height);//
}

UIGraphicsBeginImageContextWithOptions(imageSize, NO, 0);
CGContextRef context = UIGraphicsGetCurrentContext();
for (UIWindow *window in [[UIApplication sharedApplication] windows]) {


    CGContextSaveGState(context);
    CGContextTranslateCTM(context, window.center.x, window.center.y);
    CGContextConcatCTM(context, window.transform);
    CGContextTranslateCTM(context,
  -window.bounds.size.width * window.layer.anchorPoint.x, 
 -window.bounds.size.height * window.layer.anchorPoint.y);
    if (orientation == UIInterfaceOrientationLandscapeLeft) {
        CGContextRotateCTM(context, M_PI_2);
        CGContextTranslateCTM(context, 0, -imageSize.width);
    } else if (orientation == UIInterfaceOrientationLandscapeRight) {
        CGContextRotateCTM(context, -M_PI_2);
        CGContextTranslateCTM(context, -imageSize.height, 0);
    } else if (orientation == UIInterfaceOrientationPortraitUpsideDown) {
        CGContextRotateCTM(context, M_PI);
        CGContextTranslateCTM(context, -imageSize.width, -imageSize.height);
    }
    if 
([window
respondsToSelector:@selector(drawViewHierarchyInRect:afterScreenUpdates:)])     {
         [window drawViewHierarchyInRect:window.bounds afterScreenUpdates:NO];
        //[animatedImgView drawViewHierarchyInRect:window.bounds afterScreenUpdates:NO];
    } else {

        //[window.layer.presentationLayer renderInContext:context];
    }
    CGContextRestoreGState(context);
    }


 //   @autoreleasepool {
    UIImage *image = UIGraphicsGetImageFromCurrentImageContext();
    UIGraphicsEndImageContext();
    [savedImages addObject:image];
    image = nil;
 //  }

  }

Помощь приветствуется...


person user3197071    schedule 14.03.2014    source источник


Ответы (1)


Я думаю, что установки изображения на ноль недостаточно. См.: следующий графический код, помеченный iOS ARC как Leak

Другой причиной исключения может быть то, что у вас в памяти слишком много изображений. Где они хранятся? Файловая система? База данных? Память?

person Stefan    schedule 19.03.2014