I'm trying to animate my view with the following code:
UIView.animate(withDuration: 1) {
fooView.isHidden = false
}
The problem is that the view's final position is almost on the bottom of the screen, and currently the animation is making it appear from the top of the screen and cross to the bottom.
I't like it appear from bottom, how can I control that? Thanks