由于内存压力,Iphone应用程序崩溃了

时间:2014-01-23 10:39:51

标签: ios iphone memory-leaks cgcontext

我使用以下功能从视图生成图像

- (UIImage *)imageByRenderingView
{
    UIGraphicsBeginImageContext(self.bounds.size);
    [self.layer renderInContext:UIGraphicsGetCurrentContext()];
    UIImage *resultingImage = UIGraphicsGetImageFromCurrentImageContext();
    UIGraphicsEndImageContext();
    return resultingImage;
}

但随着调用此函数的次数增加,app崩溃了。 如何优化此功能或任何替代功能以从视图生成图像,这不会导致崩溃。

0 个答案:

没有答案