-
-
Notifications
You must be signed in to change notification settings - Fork 341
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Missing layoutSubviews spans for non animating viewControllers transaction #1506
Comments
We could solve this with |
This issue has gone three weeks without activity. In another week, I will close it. But! If you comment or otherwise update it, I will reset the clock, and if you label it "A weed is but an unloved flower." ― Ella Wheeler Wilcox 🥀 |
I believe this need to be on backlog. |
This issue has gone three weeks without activity. In another week, I will close it. But! If you comment or otherwise update it, I will reset the clock, and if you label it "A weed is but an unloved flower." ― Ella Wheeler Wilcox 🥀 |
Is this still an issue @brustolin? |
When a new viewController is presented without animation the ui life cycle changes.
With animation, the last method to be called is
viewDidAppear
, and we finish the transaction in this one.Without animation, methods related to layout subviews are called after
viewDidAppear
, and we don't measure them.Depending on the the amount of subviews, those methods can take a while, and thats why is important to measure them.
The text was updated successfully, but these errors were encountered: