iOS 26.5 Beta Lagging
Developers testing iOS 26.5 beta are seeing noticeable lag in scenarios combining Low Power Mode and screen recording, calling out early performance regressions. Those regressions matter because they foreshadow platform-level performance expectations that app teams will need to meet or mitigate. The initial reports are driving conversation about where to focus startup latency and background-behavior fixes. (x.com)
An iPhone doing two ordinary things at once — saving battery and recording the screen — is where some iOS 26.5 beta testers say the software starts to feel slow. Apple’s current beta is already live for developers through the iOS 26.5 software development kit bundled with Xcode 26.5, even though Apple’s own release notes list StoreKit changes and a wallpaper fix, not a broad performance warning. (developer.apple.com) Low Power Mode is Apple’s built-in battery saver, and Apple says it cuts background activity to stretch battery life. On iPhone models with ProMotion displays, Apple also says Low Power Mode limits the screen to 60 frames per second, which means the phone is already running with less visual headroom before any bug shows up. (support.apple.com) Screen recording is a second load on top of that, because iPhone is capturing everything on the display and saving it as a video file in Photos. Apple’s support guide describes it as recording what’s happening on the screen and storing it as video, which means the device has to draw the interface and encode the recording at the same time. (support.apple.com) Apple’s developer guidance has warned for years that Low Power Mode can reduce central processing unit and graphics processor performance, pause background activity, and lower frame rates. Apple also tells developers to react to that mode by cutting animations, reducing work, and avoiding unnecessary background tasks. (developer.apple.com) That is why developers pay attention to a bug like this early in a beta. If the operating system is more aggressive about throttling work while screen recording is active, an app with a heavy launch animation, a busy scrolling view, or too much work happening offscreen can suddenly feel broken even when the app code did not change. (developer.apple.com, developer.apple.com) Apple’s documentation says Background App Refresh is disabled automatically in Low Power Mode, and the time available for background tasks is reduced. For app teams, that changes the timing of fetches, uploads, sync jobs, and startup work that may have looked fine on a fully powered phone but can stall under tighter battery rules. (developer.apple.com, developer.apple.com) The iOS 26.5 beta itself is also a signal that Apple is still tuning the platform before a public release. BetaProfiles and 9to5Mac both show Apple has already pushed iOS 26.5 beta builds out to testers this week, which is exactly when developers start looking for regressions that won’t show up in polished keynote demos. (betaprofiles.com, 9to5mac.com) The practical response is usually boring but effective: move expensive work out of app launch, trim animations, and treat Low Power Mode as a stricter environment instead of an edge case. Apple gives developers a direct way to detect Low Power Mode with `isLowPowerModeEnabled` and power-state notifications, so teams can dial back visual effects and nonessential work before users ever notice the lag. (developer.apple.com, developer.apple.com) If Apple fixes the regression before the final iOS 26.5 release, most users will never know it happened. If it survives into later betas, the apps that feel fastest will be the ones built like a car that still merges smoothly uphill, not just on a flat road with a full tank. (developer.apple.com, support.apple.com)