I draw image with Bezier Path as follow:
CAShapeLayer *shapeLayer = [CAShapeLayer layer];
shapeLayer.path = bezierPath.CGPath;
shapeLayer.borderColor = [UIColor yellowColor].CGColor;
shapeLayer.borderWidth = 2;
[_round1.layer setMask:shapeLayer];
Problem
I can not able to see border with that image.
I already tried this code but with this shape is weird & image is also not set.
Thank you,