Hi there,
in Chapter 3 - challenge 2, I added a simple View Transition animation method into the resetForm method :
func resetForm(){
UIView.transition(
with: status,
duration: 1,
options: [.transitionFlipFromTop],
animations: {
self.status.isHidden = true
self.status.center = self.statusPosition
},
completion: nil)
}
However once the resetForm method is called, status view hides straight away. No animation is happening. Any idea why this could happen ?
thanks