Pregunta

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

¿Fue útil?

Solución

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.

Licenciado bajo: CC-BY-SA con atribución
No afiliado a StackOverflow
scroll top