Starting Point

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.
Answered by Claude31 in 643843022
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.
Accepted Answer
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.
Starting Point
 
 
Q