以下のコードサンプルで、CGPathCreateMutableによって作成されたパスをいつリリースするかがわかりません。
// iVar
ivarImageView = [[UIImageView alloc] initWithImage:nil];
// Clip to shape
CALayer *imageLayer = [self.ivarImageView layer];
CAShapeLayer *shapeLayer = [CAShapeLayer layer];
CGMutablePathRef clipPath = CGPathCreateMutable();
shapeLayer.path = clipPath;
imageLayer.mask = shapeLayer;
[self addSubview:self.ivarImageView];
iVarImageViewは、保持されるivarです。そのため、shapLayer.pathと同様に、オブジェクトの存続期間中使用されます。では、このパスを解放する適切な時期はいつですか?