Search results for

“translate scheme”

6,670 results found

Post

Replies

Boosts

Views

Activity

Reply to Electron app with Express + Python child processes not running in macOS production build
First up, I want to be clear that I don’t support third-party tools and libraries. I’m gonna provide general guidance here, but if you need help translating that to your chosen tooling then I recommend that you escalate that via the support channel for that tooling. macOS does let you embed a command-line tool in your app and then spawn it as a child process. However, the exact mechanics of this depend on whether your app is sandboxed or not: Mac App Store apps must be sandboxed. For apps that you distribute directly, using Developer ID signing, sandboxing is optional. Share and Enjoy — Quinn “The Eskimo!” @ Developer Technical Support @ Apple let myEmail = eskimo + 1 + @ + apple.com
Sep ’25
Error Message when running C++ program (with SFML) in Xcode.
Error Message: dyld[11081]: Library not loaded: @rpath/sfml-system. framework/Versions/2.5.1/sfml-system Referenced from: /Users/………../Library/Developer/Xcode/DerivedData Computer_Simulation_Part_A_Stage_2-gflpuzzcrbxlhsgqypwfzyighzkj/Build/Products/Debug/Terminal.app/Contents/MacOS/Terminal Reason: tried: ‘/Users/…………./ Library/Developer/Xcode/DerivedData/Computer_Simulation_Part_A_Stage_2-gflpuzzerbxIhsgqypwfzyighzkj/Build/Products/Debug/sfm1-system.framework/Versions/2.5.1/sfmI-system' (no such file), ‘/Users/…………/Library/Developer/Xcode/DerivedData/Computer_Simulation_Part_A_Stage_2-gflpuzzerbx1hsgqypwfzyighzkj/Build/Products/Debug/Terminal.app/Contents/MacOS/../Frameworks/sfmI-system. framework/Versions/2.5.1/sfmI-system' (no such file), ‘/Users/………./Library/Developer/Xcode/DerivedData/Computer_Simulation_Part_A_Stage_2-gfIpuzzcrbxIhsgaypwfzyighzkj/Build/Products/Debug/Terminal.app/Contents/MacOS/../Frameworks/sfmI-system. framework/Versions/2.5.1/sfmI-system' (no such file) Message from debugger: Termin
1
0
141
Sep ’25
Reply to View presented as sheet are properly updated to correct color scheme
Someone (Andy) showed me a workaround (i guess?) by using the @Environment(.colorScheme) to update the proper color scheme for sheets (see the updated ContentView) BTW I still think this is a SwiftUI issue. Sheets should behave the same way other views are presented. Here is a working version of the sample: import SwiftUI enum AppTheme: Int { case system = 0 case dark = 1 case light = 2 var colorScheme: ColorScheme? { switch self { case .system: return nil case .light: return .light case .dark: return .dark } } } struct SettingsView: View { @AppStorage(theme) var appTheme: AppTheme = .system var body: some View { VStack(spacing: 8) { Button { select(theme: .system) } label: { Text(System) } Button { select(theme: .dark) } label: { Text(Dark) } Button { select(theme: .light) } label: { Text(Light) } } } func select(theme: AppTheme) { appTheme = theme } } struct ContentView: View { @AppStorage(theme) var appTheme: AppTheme = .system @State var isPresented = false @Environment(.colorScheme) var systemCo
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Sep ’25
View presented as sheet are properly updated to correct color scheme
I’m facing an issue and I’d like to know if anyone has already run into this. I have a ContentView that presents a SettingsView as a sheet. SettingsView applies a change to the app’s colorScheme. ContentView reacts correctly to the change, and SettingsView does too (so far, so good). What’s strange is that when I set nil on the preferredColorScheme modifier (which, according to the docs, corresponds to the system color scheme), ContentView correctly picks up the change and refreshes, while SettingsView does pick up the change but doesn’t refresh. (In the video you can clearly see that when I switch from Dark to System, the parent view refreshes properly but not the presented sheet.) I’ve tried everything—switching to UIKit, changing the sheet’s ID… nothing works Another strange thing: if I present SettingsView through a NavigationLink, everything works normally… Here is a sample code to reproduce: import SwiftUI enum AppTheme: Int { case system = 0 case dark = 1 case light = 2 var colorScheme: ColorS
2
0
114
Sep ’25
Reply to iOS folder bookmarks
It feels you are talking here about withoutImplicitSecurityStore creation option instead of withoutImplicitStartAccessing resolving option. No, I'm talking about withoutImplicitStartAccessing. We explicitly say it does not apply to security-scoped bookmarks: This option causes an implicit call to startAccessingSecurityScopedResource() on the returned URL when it’s ready to use the resource. This option isn’t applicable to security-scoped bookmarks. In my tests, withoutImplicitStartAccessing does pretty much what it says on the tin. You're testing on iOS, not macOS. As I said earlier: If it's feasible, I'd recommend testing your code as a native macOS app (not the simulator or in compatibility mode). macOS is better at enforcing the right behavior, so code that works there will generally work on iOS. I'll state that more directly— the internal implementation of iOS means that some things work that really shouldn't. The right approach here is to use macOS as the guide. Breaking down a few specifics: Create a bo
Topic: App & System Services SubTopic: Core OS Tags:
Sep ’25
Xcode Crashes While Opening or Searching Specific Files
My Xcode crashed over and over again while I searing spefic file like TingMusic. I have tried uninstall and install Xcode from 16.0 to 16.4, clear derived data folder, reboot my Mac, but none of these working. 😭 Translated Report (Full Report Below) Process: Xcode [1811] Path: /Applications/Xcode.app/Contents/MacOS/Xcode Identifier: com.apple.dt.Xcode Version: 16.4 (23792) Build Info: IDEApplication-23792000000000000~2 (16F6) App Item ID: 497799835 App External ID: 874973124 Code Type: ARM-64 (Native) Parent Process: launchd [1] User ID: 501 Date/Time: 2025-09-02 10:51:26.8582 +0800 OS Version: macOS 15.6 (24G84) Report Version: 12 Anonymous UUID: 9835064A-AD7C-EE47-64DE-49587A7EC956 Time Awake Since Boot: 320 seconds System Integrity Protection: enabled Crashed Thread: 0 Dispatch queue: com.apple.main-thread Exception Type: EXC_CRASH (SIGABRT) Exception Codes: 0x0000000000000000, 0x0000000000000000 Termination Reason: Namespace SIGNAL, Code 6 Abort trap: 6 Terminating Process: Xcode [1811] Applicat
1
0
236
Sep ’25
Reply to iOS folder bookmarks
First off, as a clarification, withoutImplicitStartAccessing does NOT mean don't call startAccessingSecurityScopedResource for me. It feels you are talking here about withoutImplicitSecurityStore creation option instead of withoutImplicitStartAccessing resolving option.. In my tests withoutImplicitStartAccessing does pretty much what is says on the tin. For example: create a bookmark (without specifying neither withoutImplicitSecurityStore nor withSecurityScope persist it somehow (the above test app writes it to user defaults) restart the app resolve bookmark specifying withoutImplicitStartAccessing access the url - that would fail. call startAccessingSecurityScopedResource on it - it returns true access the url again - that will now work if instead of 4 above you resolve the bookmark without specifying withoutImplicitStartAccessing, then access the url - that would work right away. Behind the scenes, what actually happens when you resolve a bookmark is Thanks a lot for those details, it's really helpful to s
Topic: App & System Services SubTopic: Core OS Tags:
Aug ’25
Reply to iOS folder bookmarks
There must be some reason... otherwise we wouldn't have withoutImplicitStartAccessing in the first place ;) First off, as a clarification, withoutImplicitStartAccessing does NOT mean don't call startAccessingSecurityScopedResource for me. To quote the documentation: Bookmarks that you create without security scope automatically carry implicit ephemeral security scope. ... When using this option, other processes can’t call startAccessingSecurityScopedResource on the resolved URL. Behind the scenes, what actually happens when you resolve a bookmark is: You pass the bookmark data to a daemon (ScopedBookmarkAgent). The daemon validates the security scope, resolves the bookmark, then passes the resolved URL back to you. ...and implicit ephemeral security scope is what then allows your app to call startAccessingSecurityScopedResource on the URL it just got. Your app then calls startAccessingSecurityScopedResource to take ownership of the resource. The open/save panel works exactly the same way, except they happen t
Topic: App & System Services SubTopic: Core OS Tags:
Aug ’25
Storekit configuration broken in Xcode 16.4 the file has been changed
Hi everyone, After updating to Xcode 16.4, my StoreKit configuration stopped working. Whenever I run the app with a .storekit file set as the active scheme, I immediately get this alert: “The file has been changed. Do you want to save your changes or revert to the file on disk?” No matter if I choose Save Anyway or Revert, StoreKit testing does not work - the purchases are not simulated, and the scheme is basically broken. This issue didn’t exist in Xcode 15.4 - the same StoreKit configuration file works fine there. What I tried so far: Clearing Derived Data - no effect Making sure no scripts/tools modify the .storekit file - still happens Restarting Xcode and macOS - no change Environment: Xcode 16.4 Happens in both Simulator and on device Reproducible 100% Has anyone else seen this in 16.4? Any known workarounds until Apple fixes it? Thanks!
5
0
486
Aug ’25
iPadOS System Data Bug – Storage Ballooning 30–90GB (iPad Pro M4, iPadOS 17–18.6.2)
📢 Complaint: Severe “System Data” ballooning bug on iPad Pro M4 (iPadOS 17 → 18.6.2). “System Data” (formerly “Other”) grows abnormally from ~3 GB → 70–90 GB in just months. Deleting files, exporting PDFs, uninstalling apps, or clearing trash does not free space. The only “fix” Apple Support suggests is erase & restore — which works temporarily but always comes back within 1–3 months. 🔎 Problem Summary • Growth: 3 GB → 40 GB (1 month) → 58 GB (2 months) → 70 GB+ (3 months). • After erase: drops temporarily, then climbs again. • Multiple resets done — issue always returns. • Confirmed across users (see YouTube: ajXyDCLoLOA, cnOGeI8X-Fc). • Apple Support Case IDs filed (master: 102671138516). • Feedback Assistant report: FB19812484. 📝 Steps to Reproduce (consistent) 1. GoodNotes – Export/merge PDFs, sync large files → System Data grows even after clearing trash. 2. DocScanner (Lufick) – Import + delete scans → cache remains. 3. Apple Scan to PDF / Files – Scan 24 images, merge, delete originals → System
0
0
303
Aug ’25
UICollectionView list: leading swipe overshoots in expanded split view for .plain/.grouped; .insetGrouped OK (iPadOS 26 b5–b8) [FB19785883]
Hi all, Sharing a reproducible UIKit issue I’m seeing across multiple iPadOS 26 betas, with a tiny sample attached and a short video. Short video https://youtu.be/QekYNnHsfYk Tiny project https://github.com/yoasha/ListSwipeOvershootReproSwift Summary In a UISplitViewController (.doubleColumn), a UICollectionView using list layout shows a large leading-swipe overshoot when the split view is expanded (isCollapsed == false). The cell content translates roughly 3–4× the action width. Repros with appearance = .plain and .grouped Does not repro with .insetGrouped Independent of trailing provider (issue persists when trailing provider is nil) Collapsed split (compact width) behaves correctly Environment Devices: iPad Air (3rd gen), iPadOS 26.0 (23A5326a) → Repro Simulators: iPad Pro 11-inch (M4), iPadOS 26.0 beta 6 → Repro Also tested on device: iPadOS 26 beta 5, 6, 7, 8 Xcode: 26.0 beta 6 (17A5305f) Steps to reproduce Launch the sample; ensure the split is expanded (isCollapsed == false). In the secondary
1
0
194
Aug ’25
Reply to After submitting the DMG signature, a prompt indicating that it comes from an unidentified developer still appears when downloading and installing.
Sadly, I can’t read Chinese, so I’m answering based on a machine translation. It sounds like your goal is to create a Mac product to distribute directly, using Developer ID signing. If so, there are three basic steps: Created a Developer ID signed version of your product. Submit that for notarisation. On successful notarisation, staple the resulting ticket to your product [1]. We have documentation that covers all of this. A good place to start is: Creating distribution-signed code for macOS Packaging Mac software for distribution Once you’ve done these steps, I recommend that you test your product using the process described in Testing a Notarised Product. If you continue to have Gatekeeper problems, I have lots of advice on how to investigate that in Resolving Trusted Execution Problems. Finally, see the following forums posts for links to even more info: Notarisation Resources Code Signing Resources Trusted Execution Resources. Share and Enjoy — Quinn “The Eskimo!” @ Developer Technical Support @
Aug ’25
Toolbar tint color with Liquid Glass
I'm adapting a UIKit app to work with Liquid Glass. In pre-Liquid Glass days, the application window had a tintColor that was passed down to all of its descendant views, resulting in toolbar buttons that match the app's color scheme. In iOS 26, my toolbar buttons are always black, no matter what. I've tried setting the UIBarButtonItem#tintColor on the button and setting UIBarButtonAppearanc#tintColor. The buttons are still black. What am I doing wrong? I see a tintColor modifier for SwiftUI toolbar buttons, so it seems like maybe you can do this with SwiftUI. Many of the built-in apps on iOS 26 beta have only black toolbar buttons - is it not possible to change the toolbar button tint color on iOS 26?
Topic: UI Frameworks SubTopic: General
1
0
516
Aug ’25
Reply to Electron app with Express + Python child processes not running in macOS production build
First up, I want to be clear that I don’t support third-party tools and libraries. I’m gonna provide general guidance here, but if you need help translating that to your chosen tooling then I recommend that you escalate that via the support channel for that tooling. macOS does let you embed a command-line tool in your app and then spawn it as a child process. However, the exact mechanics of this depend on whether your app is sandboxed or not: Mac App Store apps must be sandboxed. For apps that you distribute directly, using Developer ID signing, sandboxing is optional. Share and Enjoy — Quinn “The Eskimo!” @ Developer Technical Support @ Apple let myEmail = eskimo + 1 + @ + apple.com
Replies
Boosts
Views
Activity
Sep ’25
How to exit an app developed on VisionPro using code?
I developed an app on VisionPro and created a button that allows users to exit the app instead of being forced to exit. I use the ”exit (0)“ scheme to exit the application, but when I re-enter, the loaded window is not the initial window, so is there any relevant code that can be used? Thank you
Replies
1
Boosts
0
Views
362
Activity
Sep ’25
Error Message when running C++ program (with SFML) in Xcode.
Error Message: dyld[11081]: Library not loaded: @rpath/sfml-system. framework/Versions/2.5.1/sfml-system Referenced from: /Users/………../Library/Developer/Xcode/DerivedData Computer_Simulation_Part_A_Stage_2-gflpuzzcrbxlhsgqypwfzyighzkj/Build/Products/Debug/Terminal.app/Contents/MacOS/Terminal Reason: tried: ‘/Users/…………./ Library/Developer/Xcode/DerivedData/Computer_Simulation_Part_A_Stage_2-gflpuzzerbxIhsgqypwfzyighzkj/Build/Products/Debug/sfm1-system.framework/Versions/2.5.1/sfmI-system' (no such file), ‘/Users/…………/Library/Developer/Xcode/DerivedData/Computer_Simulation_Part_A_Stage_2-gflpuzzerbx1hsgqypwfzyighzkj/Build/Products/Debug/Terminal.app/Contents/MacOS/../Frameworks/sfmI-system. framework/Versions/2.5.1/sfmI-system' (no such file), ‘/Users/………./Library/Developer/Xcode/DerivedData/Computer_Simulation_Part_A_Stage_2-gfIpuzzcrbxIhsgaypwfzyighzkj/Build/Products/Debug/Terminal.app/Contents/MacOS/../Frameworks/sfmI-system. framework/Versions/2.5.1/sfmI-system' (no such file) Message from debugger: Termin
Replies
1
Boosts
0
Views
141
Activity
Sep ’25
Reply to View presented as sheet are properly updated to correct color scheme
Someone (Andy) showed me a workaround (i guess?) by using the @Environment(.colorScheme) to update the proper color scheme for sheets (see the updated ContentView) BTW I still think this is a SwiftUI issue. Sheets should behave the same way other views are presented. Here is a working version of the sample: import SwiftUI enum AppTheme: Int { case system = 0 case dark = 1 case light = 2 var colorScheme: ColorScheme? { switch self { case .system: return nil case .light: return .light case .dark: return .dark } } } struct SettingsView: View { @AppStorage(theme) var appTheme: AppTheme = .system var body: some View { VStack(spacing: 8) { Button { select(theme: .system) } label: { Text(System) } Button { select(theme: .dark) } label: { Text(Dark) } Button { select(theme: .light) } label: { Text(Light) } } } func select(theme: AppTheme) { appTheme = theme } } struct ContentView: View { @AppStorage(theme) var appTheme: AppTheme = .system @State var isPresented = false @Environment(.colorScheme) var systemCo
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Replies
Boosts
Views
Activity
Sep ’25
Reply to View presented as sheet are properly updated to correct color scheme
BTW there is a missing word in the title. The correct title should be: View presented as sheet are NOT properly updated to correct color scheme
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Replies
Boosts
Views
Activity
Sep ’25
View presented as sheet are properly updated to correct color scheme
I’m facing an issue and I’d like to know if anyone has already run into this. I have a ContentView that presents a SettingsView as a sheet. SettingsView applies a change to the app’s colorScheme. ContentView reacts correctly to the change, and SettingsView does too (so far, so good). What’s strange is that when I set nil on the preferredColorScheme modifier (which, according to the docs, corresponds to the system color scheme), ContentView correctly picks up the change and refreshes, while SettingsView does pick up the change but doesn’t refresh. (In the video you can clearly see that when I switch from Dark to System, the parent view refreshes properly but not the presented sheet.) I’ve tried everything—switching to UIKit, changing the sheet’s ID… nothing works Another strange thing: if I present SettingsView through a NavigationLink, everything works normally… Here is a sample code to reproduce: import SwiftUI enum AppTheme: Int { case system = 0 case dark = 1 case light = 2 var colorScheme: ColorS
Replies
2
Boosts
0
Views
114
Activity
Sep ’25
Reply to iOS folder bookmarks
It feels you are talking here about withoutImplicitSecurityStore creation option instead of withoutImplicitStartAccessing resolving option. No, I'm talking about withoutImplicitStartAccessing. We explicitly say it does not apply to security-scoped bookmarks: This option causes an implicit call to startAccessingSecurityScopedResource() on the returned URL when it’s ready to use the resource. This option isn’t applicable to security-scoped bookmarks. In my tests, withoutImplicitStartAccessing does pretty much what it says on the tin. You're testing on iOS, not macOS. As I said earlier: If it's feasible, I'd recommend testing your code as a native macOS app (not the simulator or in compatibility mode). macOS is better at enforcing the right behavior, so code that works there will generally work on iOS. I'll state that more directly— the internal implementation of iOS means that some things work that really shouldn't. The right approach here is to use macOS as the guide. Breaking down a few specifics: Create a bo
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
Sep ’25
Xcode Crashes While Opening or Searching Specific Files
My Xcode crashed over and over again while I searing spefic file like TingMusic. I have tried uninstall and install Xcode from 16.0 to 16.4, clear derived data folder, reboot my Mac, but none of these working. 😭 Translated Report (Full Report Below) Process: Xcode [1811] Path: /Applications/Xcode.app/Contents/MacOS/Xcode Identifier: com.apple.dt.Xcode Version: 16.4 (23792) Build Info: IDEApplication-23792000000000000~2 (16F6) App Item ID: 497799835 App External ID: 874973124 Code Type: ARM-64 (Native) Parent Process: launchd [1] User ID: 501 Date/Time: 2025-09-02 10:51:26.8582 +0800 OS Version: macOS 15.6 (24G84) Report Version: 12 Anonymous UUID: 9835064A-AD7C-EE47-64DE-49587A7EC956 Time Awake Since Boot: 320 seconds System Integrity Protection: enabled Crashed Thread: 0 Dispatch queue: com.apple.main-thread Exception Type: EXC_CRASH (SIGABRT) Exception Codes: 0x0000000000000000, 0x0000000000000000 Termination Reason: Namespace SIGNAL, Code 6 Abort trap: 6 Terminating Process: Xcode [1811] Applicat
Replies
1
Boosts
0
Views
236
Activity
Sep ’25
Reply to iOS folder bookmarks
First off, as a clarification, withoutImplicitStartAccessing does NOT mean don't call startAccessingSecurityScopedResource for me. It feels you are talking here about withoutImplicitSecurityStore creation option instead of withoutImplicitStartAccessing resolving option.. In my tests withoutImplicitStartAccessing does pretty much what is says on the tin. For example: create a bookmark (without specifying neither withoutImplicitSecurityStore nor withSecurityScope persist it somehow (the above test app writes it to user defaults) restart the app resolve bookmark specifying withoutImplicitStartAccessing access the url - that would fail. call startAccessingSecurityScopedResource on it - it returns true access the url again - that will now work if instead of 4 above you resolve the bookmark without specifying withoutImplicitStartAccessing, then access the url - that would work right away. Behind the scenes, what actually happens when you resolve a bookmark is Thanks a lot for those details, it's really helpful to s
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
Aug ’25
Reply to iOS folder bookmarks
There must be some reason... otherwise we wouldn't have withoutImplicitStartAccessing in the first place ;) First off, as a clarification, withoutImplicitStartAccessing does NOT mean don't call startAccessingSecurityScopedResource for me. To quote the documentation: Bookmarks that you create without security scope automatically carry implicit ephemeral security scope. ... When using this option, other processes can’t call startAccessingSecurityScopedResource on the resolved URL. Behind the scenes, what actually happens when you resolve a bookmark is: You pass the bookmark data to a daemon (ScopedBookmarkAgent). The daemon validates the security scope, resolves the bookmark, then passes the resolved URL back to you. ...and implicit ephemeral security scope is what then allows your app to call startAccessingSecurityScopedResource on the URL it just got. Your app then calls startAccessingSecurityScopedResource to take ownership of the resource. The open/save panel works exactly the same way, except they happen t
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
Aug ’25
Storekit configuration broken in Xcode 16.4 the file has been changed
Hi everyone, After updating to Xcode 16.4, my StoreKit configuration stopped working. Whenever I run the app with a .storekit file set as the active scheme, I immediately get this alert: “The file has been changed. Do you want to save your changes or revert to the file on disk?” No matter if I choose Save Anyway or Revert, StoreKit testing does not work - the purchases are not simulated, and the scheme is basically broken. This issue didn’t exist in Xcode 15.4 - the same StoreKit configuration file works fine there. What I tried so far: Clearing Derived Data - no effect Making sure no scripts/tools modify the .storekit file - still happens Restarting Xcode and macOS - no change Environment: Xcode 16.4 Happens in both Simulator and on device Reproducible 100% Has anyone else seen this in 16.4? Any known workarounds until Apple fixes it? Thanks!
Replies
5
Boosts
0
Views
486
Activity
Aug ’25
iPadOS System Data Bug – Storage Ballooning 30–90GB (iPad Pro M4, iPadOS 17–18.6.2)
📢 Complaint: Severe “System Data” ballooning bug on iPad Pro M4 (iPadOS 17 → 18.6.2). “System Data” (formerly “Other”) grows abnormally from ~3 GB → 70–90 GB in just months. Deleting files, exporting PDFs, uninstalling apps, or clearing trash does not free space. The only “fix” Apple Support suggests is erase & restore — which works temporarily but always comes back within 1–3 months. 🔎 Problem Summary • Growth: 3 GB → 40 GB (1 month) → 58 GB (2 months) → 70 GB+ (3 months). • After erase: drops temporarily, then climbs again. • Multiple resets done — issue always returns. • Confirmed across users (see YouTube: ajXyDCLoLOA, cnOGeI8X-Fc). • Apple Support Case IDs filed (master: 102671138516). • Feedback Assistant report: FB19812484. 📝 Steps to Reproduce (consistent) 1. GoodNotes – Export/merge PDFs, sync large files → System Data grows even after clearing trash. 2. DocScanner (Lufick) – Import + delete scans → cache remains. 3. Apple Scan to PDF / Files – Scan 24 images, merge, delete originals → System
Replies
0
Boosts
0
Views
303
Activity
Aug ’25
UICollectionView list: leading swipe overshoots in expanded split view for .plain/.grouped; .insetGrouped OK (iPadOS 26 b5–b8) [FB19785883]
Hi all, Sharing a reproducible UIKit issue I’m seeing across multiple iPadOS 26 betas, with a tiny sample attached and a short video. Short video https://youtu.be/QekYNnHsfYk Tiny project https://github.com/yoasha/ListSwipeOvershootReproSwift Summary In a UISplitViewController (.doubleColumn), a UICollectionView using list layout shows a large leading-swipe overshoot when the split view is expanded (isCollapsed == false). The cell content translates roughly 3–4× the action width. Repros with appearance = .plain and .grouped Does not repro with .insetGrouped Independent of trailing provider (issue persists when trailing provider is nil) Collapsed split (compact width) behaves correctly Environment Devices: iPad Air (3rd gen), iPadOS 26.0 (23A5326a) → Repro Simulators: iPad Pro 11-inch (M4), iPadOS 26.0 beta 6 → Repro Also tested on device: iPadOS 26 beta 5, 6, 7, 8 Xcode: 26.0 beta 6 (17A5305f) Steps to reproduce Launch the sample; ensure the split is expanded (isCollapsed == false). In the secondary
Replies
1
Boosts
0
Views
194
Activity
Aug ’25
Reply to After submitting the DMG signature, a prompt indicating that it comes from an unidentified developer still appears when downloading and installing.
Sadly, I can’t read Chinese, so I’m answering based on a machine translation. It sounds like your goal is to create a Mac product to distribute directly, using Developer ID signing. If so, there are three basic steps: Created a Developer ID signed version of your product. Submit that for notarisation. On successful notarisation, staple the resulting ticket to your product [1]. We have documentation that covers all of this. A good place to start is: Creating distribution-signed code for macOS Packaging Mac software for distribution Once you’ve done these steps, I recommend that you test your product using the process described in Testing a Notarised Product. If you continue to have Gatekeeper problems, I have lots of advice on how to investigate that in Resolving Trusted Execution Problems. Finally, see the following forums posts for links to even more info: Notarisation Resources Code Signing Resources Trusted Execution Resources. Share and Enjoy — Quinn “The Eskimo!” @ Developer Technical Support @
Replies
Boosts
Views
Activity
Aug ’25
Toolbar tint color with Liquid Glass
I'm adapting a UIKit app to work with Liquid Glass. In pre-Liquid Glass days, the application window had a tintColor that was passed down to all of its descendant views, resulting in toolbar buttons that match the app's color scheme. In iOS 26, my toolbar buttons are always black, no matter what. I've tried setting the UIBarButtonItem#tintColor on the button and setting UIBarButtonAppearanc#tintColor. The buttons are still black. What am I doing wrong? I see a tintColor modifier for SwiftUI toolbar buttons, so it seems like maybe you can do this with SwiftUI. Many of the built-in apps on iOS 26 beta have only black toolbar buttons - is it not possible to change the toolbar button tint color on iOS 26?
Topic: UI Frameworks SubTopic: General
Replies
1
Boosts
0
Views
516
Activity
Aug ’25