我在cgcontext上绘制了一个uiimage
CGContextDrawImage(tempContext,CGRectMake(0,0,myRect.size.width,myRect.size.height),imgRef);
但是一旦用户完成当前图像,我想清除tempContext,以便我可以重新缩放/操作图像并在相同的上下文中重绘它。
为此我想清除上下文并使其干净。 我尝试过CgContextClearRect但它没有用:(
答案 0 :(得分:7)
尝试这个,它适用于我:CGContextClearRect(UIGraphicsGetCurrentContext(),rect);