Post

Replies

Boosts

Views

Activity

Reply to Creating an URL bookmark in macOS 26.1 of a Windows NTFS fileshare returns a bookmark with access to the local drive
@DTS Engineer It concerns SMB shares of NTFS volumes hosted on Windows PCs. The starting URL could for example be file:///Volumes/Videos/, but the resolved URL is file:///. This happens immediately after resolving the bookmark data, even if that data has been created in the same code context. To be clear, only in macOS 26.1. In older macOS versions the starting URL and resolved URL are identical. FB20917638 contains instructions and a sample project to reproduce the issue.
Topic: App & System Services SubTopic: Core OS Tags:
Nov ’25
Reply to Xcode 26 Beta 5 XIB Compiler outputs NIBs with dependency on class that isn't available pre-macOS 26
The runtime warning (not error) I see, seems indeed to be caused by one or more NIBs that contains the infamous _TtCC6AppKit14NSScrollPocketP33_EC3F85FAB7755D56E669206D2B17725B12BackdropView class reference. Compiled storyboards results in a collection of NIBs, and I saw a few that contains each 2 references to said weird class. After removing the NSTouchBar objects from the storyboard, the resulting NIBs only contained 1 reference, without causing a runtime warning. If Apple doesn't solve this runtime warning then I think I just ignore it until it's solved or when I can give up support for NSTouchBar.
Aug ’25
Reply to Xcode 26 Beta 5 XIB Compiler outputs NIBs with dependency on class that isn't available pre-macOS 26
I see the exact same weird class name in a 'purple' warning message when running one of my projects: Attempting to unarchive Swift class 'AppKit.NSScrollPocket.(unknown context at $19bd29ed8).BackdropView' with unstable runtime name '_TtCC6AppKit14NSScrollPocketP33_EC3F85FAB7755D56E669206D2B17725B12BackdropView'. The runtime name for this class may change in the future, leading to non-decodable data. You can use the 'objc' attribute to ensure that the name will not change: "@objc(_TtCC6AppKit14NSScrollPocketP33_EC3F85FAB7755D56E669206D2B17725B12BackdropView)" If there are no existing archives containing this class, you should choose a unique, prefixed name instead: "@objc(ABCMyModel)" The purple error line is on instantiation of a Storyboard. I have no idea which element in the Storyboard is responsible for this warning, which makes it hard to make an example project for a Feedback. Do you see the same kind of warning or something completely different?
Aug ’25
Reply to Creating an URL bookmark in macOS 26.1 of a Windows NTFS fileshare returns a bookmark with access to the local drive
This bug seems to be fixed in macOS 26.2 beta 3.
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
Nov ’25
Reply to Creating an URL bookmark in macOS 26.1 of a Windows NTFS fileshare returns a bookmark with access to the local drive
@DTS Engineer It concerns SMB shares of NTFS volumes hosted on Windows PCs. The starting URL could for example be file:///Volumes/Videos/, but the resolved URL is file:///. This happens immediately after resolving the bookmark data, even if that data has been created in the same code context. To be clear, only in macOS 26.1. In older macOS versions the starting URL and resolved URL are identical. FB20917638 contains instructions and a sample project to reproduce the issue.
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
Nov ’25
Reply to Creating an URL bookmark in macOS 26.1 of a Windows NTFS fileshare returns a bookmark with access to the local drive
@Etresoft No, the decoded URL is not the same as the encoded URL. That's the whole point of my post.
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
Nov ’25
Reply to Xcode 26 Beta 5 XIB Compiler outputs NIBs with dependency on class that isn't available pre-macOS 26
The runtime warning I saw seems to be fixed in macOS 26 beta 7
Replies
Boosts
Views
Activity
Aug ’25
Reply to Xcode 26 Beta 5 XIB Compiler outputs NIBs with dependency on class that isn't available pre-macOS 26
The runtime warning (not error) I see, seems indeed to be caused by one or more NIBs that contains the infamous _TtCC6AppKit14NSScrollPocketP33_EC3F85FAB7755D56E669206D2B17725B12BackdropView class reference. Compiled storyboards results in a collection of NIBs, and I saw a few that contains each 2 references to said weird class. After removing the NSTouchBar objects from the storyboard, the resulting NIBs only contained 1 reference, without causing a runtime warning. If Apple doesn't solve this runtime warning then I think I just ignore it until it's solved or when I can give up support for NSTouchBar.
Replies
Boosts
Views
Activity
Aug ’25
Reply to Xcode 26 Beta 5 XIB Compiler outputs NIBs with dependency on class that isn't available pre-macOS 26
I manage to reproduce it with a fresh Xcode project. Adding a NSTouchBar and NSOutlineView to a Storyboard was sufficient to get the weird runtime warning. FB19543241
Replies
Boosts
Views
Activity
Aug ’25
Reply to Xcode 26 Beta 5 XIB Compiler outputs NIBs with dependency on class that isn't available pre-macOS 26
At my side it turns that removing a NSTouchBar from the Storyboard 'solves' the problem in two completely different projects. Unfortunately I didn't succeed yet in making a clean example project that proves this for a Feedback, so apparently the problem is NSTouchBar and something else.
Replies
Boosts
Views
Activity
Aug ’25
Reply to New 'badge' property of UIBarButtonItem does not work in iOS 26 beta 3 when used in a toolbar
Thanks for your reply! My question concerns only the UIToolbar. It works indeed as expected in a UINavigationBar. So Apple don't want us to use badges in the UIToolbar for whatever reason or it is a bug.
Topic: UI Frameworks SubTopic: UIKit Tags:
Replies
Boosts
Views
Activity
Aug ’25
Reply to Xcode 26 Beta 5 XIB Compiler outputs NIBs with dependency on class that isn't available pre-macOS 26
I see the exact same weird class name in a 'purple' warning message when running one of my projects: Attempting to unarchive Swift class 'AppKit.NSScrollPocket.(unknown context at $19bd29ed8).BackdropView' with unstable runtime name '_TtCC6AppKit14NSScrollPocketP33_EC3F85FAB7755D56E669206D2B17725B12BackdropView'. The runtime name for this class may change in the future, leading to non-decodable data. You can use the 'objc' attribute to ensure that the name will not change: "@objc(_TtCC6AppKit14NSScrollPocketP33_EC3F85FAB7755D56E669206D2B17725B12BackdropView)" If there are no existing archives containing this class, you should choose a unique, prefixed name instead: "@objc(ABCMyModel)" The purple error line is on instantiation of a Storyboard. I have no idea which element in the Storyboard is responsible for this warning, which makes it hard to make an example project for a Feedback. Do you see the same kind of warning or something completely different?
Replies
Boosts
Views
Activity
Aug ’25
Reply to Liquid glass: UIPageViewController inside UITabbarController adding blur effect always in iOS26
The heavy blur may be caused by the backgroundColor of the UIPageViewController, which is default black. Changing that to another color may fix the problem, at least that did it for me.
Topic: UI Frameworks SubTopic: UIKit Tags:
Replies
Boosts
Views
Activity
Jul ’25
Reply to Where is the NSToolbarItem badge property in macOS Tahoe?
The badge property is now available since beta 3. Unfortunately it's quite useless for me because the background color is hardcoded red.
Topic: UI Frameworks SubTopic: AppKit Tags:
Replies
Boosts
Views
Activity
Jul ’25
Reply to SF Symbols 6 app does not export 'Can Rotate' property of a layer
It seems that this bug has been fixed in SF Symbols 7 beta.
Topic: UI Frameworks SubTopic: General Tags:
Replies
Boosts
Views
Activity
Jun ’25
Reply to Tinted Widget Issue: White Text on White Tint Background
This answer may be helpful: https://forums.developer.apple.com/forums/thread/763246
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Replies
Boosts
Views
Activity
Nov ’24
Reply to SF Symbols 6 app does not export 'Can Rotate' property of a layer
The release version of SF Symbols 6 is now available, but it is still not possible to export rotatable symbols. The export file misses the 'Can Rotate' property and the anchor point. For me it is totally unclear why the app contains fancy controls to set the anchor point, mark layers as rotatable, but without the possibility to export this.
Topic: UI Frameworks SubTopic: General Tags:
Replies
Boosts
Views
Activity
Oct ’24
Reply to SF Symbol rotate animation in NSImageView looks weird in macOS 15 beta
This problem seems to be solved in macOS 15.1 beta
Topic: UI Frameworks SubTopic: AppKit Tags:
Replies
Boosts
Views
Activity
Sep ’24