I have a very simple animation which is moving a view throughout the main view like this:
NSAnimationContext.runAnimationGroup({ (_) in
NSAnimationContext.current.duration = 50.0
viewTOModify.frame.origin.x = -20
}) {
print("finished")
}
This issue I have with this is that the movement is instantaneous and there is not the duration I set. Thanks for the help in advanced.
You can use the view's
.animator()
method like this:If you don't want to use
.animator()
you have to set.allowsImplicitAnimation
like this: