Domanda

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

È stato utile?

Soluzione

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.

Autorizzato sotto: CC-BY-SA insieme a attribuzione
Non affiliato a StackOverflow
scroll top