-
Notifications
You must be signed in to change notification settings - Fork 25k
fix(ios): avoid reallocating views on RCTDevLoadingView showMessage calls #54608
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
fix(ios): avoid reallocating views on RCTDevLoadingView showMessage calls #54608
Conversation
|
Thanks for this! I've tested on RNTester internally and things seem to work fine. |
…dow-in-rctdevloadingview # Conflicts: # packages/react-native/React/CoreModules/RCTDevLoadingView.mm
97e28f4 to
422f184
Compare
|
I've updated the PR to catch up with the recent changes in #54445 that introduced a new dismiss button. Again, I avoid allocations (so this PR fixes the potential allocation of a new I tested it as follows: # Initialise an app using the latest nightly build:
npx @react-native-community/cli init pr54608 --version 0.84.0-nightly-20251121-2bbb104a4
# ... Then patch `node_modules/react-native/React/CoreModules/RCTDevLoadingView.mm` with my PR code.Here's a visual regression test:
… No regressions! |
…dow-in-rctdevloadingview
|
This pull request was successfully merged by @shirakaba in 55a5b6b When will my fix make it into a release? | How to file a pick request? |




(See also the equivalent PR for
[email protected]: microsoft#2762)Summary:
I'm upstreaming a change I've made to
RCTDevLoadingViewfor the sake ofreact-native-macos, as I believereact-nativecould benefit from the same change.As it regards the dev loading view, this issue of course affects only debug builds. The issue is that, each time a Metro progress update triggers the
showMessage:withColor:withBackgroundColor:method onRCTDevLoadingView, we end up allocating a newUIWindow(iOS) orNSWindow(macOS), rather than reusing the existing window stored onself->_windowfrom any previous progress updates. These unnecessary allocations are particularly expensive on macOS, as I show below.Demo of the issue on macOS
On
react-native-macos, the impact of this issue is dramatic (so much so that the Microsoft Office team disableRCTDevLoadingViewin their Mac app). On the first connection to Metro (as first-time connections can produce nearly 100 progress updates), we end up allocating nearly 100NSWindows. AllocatingNSWindows is so expensive that it blocks the UI thread and adds 30 seconds to app launch (see 00:40 -> 01:15 of the below video clip).What's more, as we can see in the view debugger, these
NSWindows never get released, so they remain in the view graph and just leak memory (see 01:15 -> 01:30 of the below video clip).(This clip is from 1:15:00 of a livestream where I dug into this problem – sorry for the poor quality clips, that's the best the servers allow me to download)
mwe_clip.mp4
Demo of the issue on iOS
The problem is, fortunately, unnoticeable on iOS (which is perhaps why it was overlooked when ported to macOS). I ran the same test on
[email protected]and found that although React Native iOS does needlessly allocate manyUIWindows, the allocations don't seem to delay app launch and no dangling windows show up in the view debugger. So it's possible that it's cheaper to allocate and dispose of windows in UIKit than in AppKit.(This clip is from 3:03:45 of the livestream:)
output.mp4
But still, I feel it's good to align implementations and just good practice to avoid allocating memory needlessly, so I'd like to open this PR nonetheless. Heck, it might still be important for iOS on larger codebases that emit many more progress updates than the Hello World app demoed here.
Solution
Each of these views (the window, the container, and the label) need only be allocated once. Thereafter, they can be modified. This PR adds conditionals to lazily-allocate them, and reorders them in order of dependency (e.g. the label is the most nested, so needs to be handled first).
Changelog:
[IOS] [FIXED] - Avoid reallocating views on RCTDevLoadingView progress updates
Test Plan:
I am unable to run
RNTesteron the latest commit of themainbranch; I've tried five different versions of Ruby, but thebundle installalways fails. If someone could please guide me how to get RNTester, Ruby, and Bundler happy, I'd be happy to use that app to test it onmain.So my testing so far has been based on patching an existing
[email protected]app live on stream. This version of React Native has the exact same bug as currentmain, so it should be representative.