我正在使用CGContextRef

UIGraphicsBeginImageContext(self.drawImage.frame.size);
CGContextRef context=UIGraphicsGetCurrentContext();
CGContextSetRGBStrokeColor(context,0.0f,0.0f,0.0f,1.0f);
UIGraphicsEndImageContext();
CGContextRelease(context);

我需要在上面的代码中调用CGContextRelease(Context);吗?

最佳答案

没有。

参见The Create Rule vs. The Get Rule:

关于iphone - 我是否需要释放从UIGraphicsGetCurrentContext()返回的上下文?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/3725786/

10-13 05:42