使用 UIGraphicsGetImageFromCurrentImageContext 时如何修复因内存问题而终止?
How to fix terminated due to memory issue when using UIGraphicsGetImageFromCurrentImageContext?
在我的绘图应用程序中,我使用 UIImage 缓存绘图。
以下代码行导致内存问题:
UIGraphicsBeginImageContextWithOptions(self.bounds.size, NO, 0.0);
self.cacheImage = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();
如何使用 UIGraphicsGetImageFromCurrentImageContext
而不导致内存泄漏?
如有任何帮助,我们将不胜感激。提前致谢。
使用这个可能对你有帮助。
它对我的情况有帮助
@autoreleasepool {
// Write your code here
}
在我的绘图应用程序中,我使用 UIImage 缓存绘图。
以下代码行导致内存问题:
UIGraphicsBeginImageContextWithOptions(self.bounds.size, NO, 0.0);
self.cacheImage = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();
如何使用 UIGraphicsGetImageFromCurrentImageContext
而不导致内存泄漏?
如有任何帮助,我们将不胜感激。提前致谢。
使用这个可能对你有帮助。 它对我的情况有帮助
@autoreleasepool {
// Write your code here
}