You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Had an issue in production code where this class, while working perfectly for months, started to have issues with the transitions that use the [UIView animateWithDuration: method.
the fix is that you have to use transitionToViewController: ... but this method implicitly calls addSubview where for transitions that SlideOld to reveal the new one you need something like insertSubview.
So, yeah, need to think of a solution here.
probably need to make a demo project that will trace all the will/didMoveToSuperview, etc. and then find the appropriate time to re-arrange the subviews.
The text was updated successfully, but these errors were encountered:
Had an issue in production code where this class, while working perfectly for months, started to have issues with the transitions that use the [UIView animateWithDuration: method.
the fix is that you have to use transitionToViewController: ... but this method implicitly calls addSubview where for transitions that SlideOld to reveal the new one you need something like insertSubview.
So, yeah, need to think of a solution here.
probably need to make a demo project that will trace all the will/didMoveToSuperview, etc. and then find the appropriate time to re-arrange the subviews.
The text was updated successfully, but these errors were encountered: