CAShapeLayer *circle = [CAShapeLayer layer]; circle.path = [UIBezierPath bezierPathWithRoundedRect:CGRectMake(0, 0, 2.0*radius, 2.0*radius) cornerRadius:radius].CGPath;
I drew a circle and added it as a sublevel. I donβt understand how to make the circular line dashed? I added the circle code above.
source share