Is there such a thing as starting point modifiers when you want a UIView to go back to where it originally was before you did any action to it.
Starting Point
modifier, no.
It is up to you to save this original state, save it and restore (pretty easy).
In fact, save each property in an oldState var and reuse later if needed. Each time you commit change, update oldState with currentState value.
It is up to you to save this original state, save it and restore (pretty easy).
In fact, save each property in an oldState var and reuse later if needed. Each time you commit change, update oldState with currentState value.