I have a rect. Top corners are always rounded. Bottom corners have animation - rounded or not.
Previous my solution was to split this rect into top and bottom rects (top one is constant, bottom one is animated). The reason is maskedCorners
is not animated - you can animate cornerRadius
only.
But now I need to add a colored border around the rect which should be animated too. So my solution is not suitable anymore. How to solve this issue?
You can do this by animating a
CGPath
for the view's layer, and constructing the path by adding arcs at the corners for individual radii.Here's an example class:
You can specify different radii for each corner, and tell it to animate to the new settings (or not).
For example, you could start with:
to round the top-left and top-right corners, then later call:
to animate the bottom corners.
Here's a sample controller class to demonstrate. Each time you tap, the bottom corners will animate between rounded and non-rounded:
Note: this is example code only!!!