If the NavigationSplitView on iPadOS 26 is combined with a .inspector column, the sidebarToggle is always hidden, when the sidebar is collapsed. If you remove the .inspector modifier, the sidebarToggle stays visible throughout the collapsed or expanded state.
Has maybe someone a workaround for this issue?
The problem does not exist in iOS 18.
The bug is reported as FB20061260
Selecting any option will automatically load the page
Post
Replies
Boosts
Views
Created
Hey everyone,
I was wondering how it is possible to add screenshots to the app without containing any UI elements, like in the following examples, where the UI is clearly not part of the screenshot:
https://apps.apple.com/us/app/komoot-hike-bike-run/id447374873
https://apps.apple.com/us/app/relive-hike-ride-memories/id1201703657
Is the App Review less strict for the first image? Is it somehow connected to the App Preview (but without a video?)?
Thanks for the input and help!
Hey everyone,
I found a possible SwiftData Release-only issue with nested sort descriptors on an optional relationship.
In a minimal repro, sorting a @Query by a nested optional relationship key path like:
SortDescriptor(\InvestigationPhotoAsset.imageAnalysis?.overallAestheticsScore, order: .reverse)
works in Debug, but crashes at runtime in Release.
The surprising part is that the crash depends on file layout:
if the active SwiftData models and the sort logic are kept in the same Swift file, the app works
if the same models are split into separate files, the Release build crashes, 'Debug' will also work
The repro was reduced to just two SwiftData models:
InvestigationPhotoAsset
InvestigationImageAnalysis
So this looks less like an app-modeling issue and more like a SwiftData/compiler/codegen issue related to nested sort metadata in optimized builds.
If useful, I can also give you a slightly more formal version with a title and code snippet block.
Please check out the code example here
Has anyone faced something similar?
Bug is reported as FB22173905