Description:
Since updating to Tahoe, the file picker dialog briefly flickers immediately after opening in my document-based app. This behavior did not occur on macOS Sequoia.
Rhe issue does not appear in TextEdit, but it does occur in Paper (a writing app) and Kaleidoscope. Based on this, it seems to affect third-party document-based apps that use standard open panels.
Steps to Reproduce:
1. Launch a third-party document-based app.
2. Open the file picker (e.g., via “Open…”).
3. Observe a brief flicker as the dialog appears.
Expected Result:
The file picker dialog should open smoothly without flickering.
Actual Result:
The file picker dialog flickers briefly right after appearing.
Notes:
• Issue introduced in macOS Tahoe.
• Not reproducible in macOS Sequoia.
Reported through Feedback Assistant: FB20522119
Selecting any option will automatically load the page
Post
Replies
Boosts
Views
Created
Environment:
• macOS 26.0 (25A354)
• Xcode 26.0.1 (17A400)
Issue:
Applying .tint(...) to a macOS Liquid Glass style Toggle does not change the background color when the toggle is in the on state.
Expected behavior:
The .tint(...) modifier should apply the chosen color.
Actual behavior:
The toggle remains system blue (accent color), regardless of the tint specified
Notes:
I’m hearing that .tint() behaves normally on iOS, so this may be macOS-specific.
Hello,
I recently updated my app’s icon to use the new Liquid Glass style by adding an .icon file created with Icon Composer to my project.
Previously, I had two image sets (light and dark versions of the app icon), and I’d implemented a settings option that let users either manually select their preferred icon, or let the app automatically switch between light/dark based on the system appearance.
Is there a way to achieve the same behavior with the new Liquid Glass .icon file?Specifically, can I programmatically override the system-selected Liquid Glass dock icon and force a particular variant?
Thank you.
Summary:
The minus.capsule and minus.capsule.fill SF Symbols do not render in my project. Other SF Symbols (e.g., plus.capsule and minus.circle) render correctly in the same context.
Steps to Reproduce
1. Add an Image(systemName: "minus.capsule") or Image(systemName: "minus.capsule.fill") to a SwiftUI view.
2. Run the app on the latest macOS.
Expected Result
The minus capsule symbols should render consistently, similar to plus.capsule.
Actual Result
minus.capsule and minus.capsule.fill do not render at all.
Additional Testing
• Replaced minus.capsule with minus.circle: renders correctly.
• Swapped the right-hand plus.capsule symbol in my slider with minus.capsule: the symbol fails to render in that position as well. That rules out clipping or layout issues.
The .tint modifier doesn't seem to change the background color on the redesigned macOS 26 toggles.
For example, using:
Toggle("", isOn: isOn)
.toggleStyle(.switch)
.tint(.cyan)
.scaleEffect(0.8)
.opacity(isEnabled ? 1.0 : 0.4)
the toggles use the system accent color instead of cyan.
Has SwiftUI introduced a new modifier for that? I couldn't find anything in the June 2025 changes.
I’m building a document-based macOS app using SwiftUI with an AppKit NSDocument.
By default, when the window has no toolbar, the document title and proxy icon (with the edited state dot and standard saving controls) appear nicely centered in the title bar.
However, as soon as I attach a toolbar - even an empty one - the document proxy moves to the leading edge of the title bar.
Is there a way to keep the document proxy/title centered in a document-based SwiftUI app while also using a toolbar? Or is the left-alignment now the only supported behavior when a toolbar is present?
Thanks in advance for any guidance.
In a new document-based macOS app project created in Xcode, some of the default system-provided menu commands appear without their standard icons in the menu bar.
Steps to Reproduce:
1. In Xcode, create a new macOS “Document App” project (using Swift/SwiftUI or AppKit template).
2. Build and run the project.
3. Open the app’s main menu bar and examine the default items such as New Document, Open…, Save, Duplicate, etc.
Expected Results:
System-provided menu items (e.g. Open…, Save, Duplicate) should display their standard SF Symbol–based icons automatically, as they do in TextEdit and other system apps.
Actual Results:
Some of these menu items display only text, with no icon namely:
Services
Open Recent
Revert To
Share
This happens even though the items are the system-managed defaults generated by the document-based app template.
Notes:
• No code modifications were made — this occurs in a fresh, unedited template project.
• Behavior seen on macOS 26.0 (25A354).
• Xcode Version 26.0 (17A324) used.
Hi everyone,
I’ve run into a strange localization issue with macOS document-based apps in SwiftUI/AppKit. I created a standard document-based macOS app in Xcode (SwiftUI template) and added a French localization to the project.
All system-generated menu bar commands (File → New, Close, Print, etc.) are correctly translated into French… except for “Save”, which remains in English.
To rule out problems in my own code, I created a fresh, unmodified document-based app project in Xcode, and immediately added French localization without touching any code. Same result: all commands are translated except “Save”.
This suggests the issue isn’t specific to my app code, but either the project template, or possibly macOS itself.
My environment
• Xcode version: 16.4
• macOS version: 15.6.1 Sequoia]
• Swift: Swift 6
Questions
1. Has anyone else seen this issue with the “Save” command not being localized?
2. Is this expected behavior (maybe “Save” is handled differently from other menu items)?
3. If it’s a bug in the template or OS, is there a known workaround?
Thanks for any insights
P.S. Please note that I'm a total beginner