ios – CGContextClear警告

前端之家收集整理的这篇文章主要介绍了ios – CGContextClear警告前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我在使用CG ImageDestinationFinalize时遇到iOS问题.我将在CGImageDestinationRef上调用CGImageDestinationFinalize,我会收到以下警告

Error: The function `CGContextClear’ is obsolete and will be removed in an upcoming update. Unfortunately,this application,or a library it uses,is using this obsolete function,and is thereby contributing to an overall degradation of system performance.

看看乐器,当我调用CGImageDestinationFinalize时,我的内存使用率会上升(有时它会变得太高而崩溃).我不确定这个问题是否应该受到指责,但我已将其与CGImageDestinationFinalize的问题分开了

有关使用什么来避免调用CGContextClear的任何建议?或者如何使用CGImageDestinationFinalize减少内存使用量?

解决方法

我想说它肯定与CGContextClear有关.它保留了你在记忆中的所有东西.虽然您的上下文未被清除或释放,但它会将该上下文中定义的元素保留在内存中.您使用的是哪个版本的iOS?
我很确定CGContextClear不适用于iOS 6及更高版本.

如果您转到文档,您会注意到CGContextClear不再出现
https://developer.apple.com/library/ios/DOCUMENTATION/GraphicsImaging/Reference/CGContext/Reference/reference.html

寻找可能有助于您的目的的CGContextClearRect

原文链接:https://www.f2er.com/iOS/331505.html

猜你在找的iOS相关文章