使用UIGraphicsGetImageFromCurrentImageContext时如何解决因内存问题而终止的问题?

时间:2017-07-27 07:01:47

标签: ios objective-c ipad core-graphics automatic-ref-counting

在我的绘图应用程序中,我使用UIImage缓存绘图。

以下代码行会导致内存问题:

UIGraphicsBeginImageContextWithOptions(self.bounds.size, NO, 0.0);
self.cacheImage = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();

如何在不造成内存泄漏的情况下使用UIGraphicsGetImageFromCurrentImageContext

任何帮助将不胜感激。提前谢谢。

1 个答案:

答案 0 :(得分:2)

使用它可能会对你有所帮助。 在我的情况下它帮助我

 @autoreleasepool {
  // Write your code here    
 }