给定一个 CGMutablePathRef 我如何在其中绘制一个 UIImage ?我知道你可以像下面这样画它:
UIImage* scaledImage = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();
[scaledImage drawAtPoint:CGPointMake(0, 0)];
CGContextRestoreGState(context);
但我不确定我是否有路径(这是一个带圆角的矩形)如何在其中添加图像?