Question

I'm doing a custom slide in transition on a modal view controller. I have a big dimiss button on the modal view, but I can't press it and dismiss the view until the transition animation is completely finished.

Is it possible to enable userInteraction on the views elements during the transition?

Thanks

Was it helpful?

Solution

Figured it out. I had this line at the end of the animation:

    [transitionContext completeTransition:YES];

No user interaction is allowed before the "completeTransition:YES" has been called.

Called it straight away and it works like a charm.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top