Post

Replies

Boosts

Views

Activity

Strange Overlay with NSWorkspace.shared.icon(forFile: )
I am currently experiencing strange behavior when determining icons for files. When I determine icons using let icon = NSWorkspace.shared.icon(forFile: path) it generally works fine. However, for some files, a "denied" symbol appears as an overlay. When I look at the corresponding icon in the debugger, a Decorated-Icon with the decoration "com.apple.icon-decoration.system.unsupported" is determined. In Finder, Dock, or other programs, the symbol is displayed correctly. In the case mentioned, it is a website that has been converted into an app using the "Unite" application. Why is NSWorkspace.shared.icon(forFile: path) determining this overlay and is there a way to get the "normal" icon?
1
0
385
Oct ’23
SwiftUI: quickLookPreview - called while the panel has no controller?
Hello all, I am trying to use quickLookPreview in SwiftUI (macOS) to view a file using quicklook. The following sample code is actually very simple: import SwiftUI import QuickLook struct ContentView: View {     @State var qlURL: URL?     var body: some View {         Button("Show QuickLook") {             qlURL = URL.init(fileURLWithPath: "path to a file")         }         .quickLookPreview($qlURL)     } } At first glance, everything looks great and the specified file is displayed via quicklook. However, I get numerous error messages in the log: 2023-03-10 14:46:58.258051+0100 SwiftUI-Test1[998:5878590] [General] -[QLPreviewPanel setDelegate:] called while the panel has no controller - Fix this or this will raise soon. See comments in QLPreviewPanel.h for -acceptsPreviewPanelControl:/-beginPreviewPanelControl:/-endPreviewPanelControl:. 2023-03-10 14:46:58.258228+0100 SwiftUI-Test1[998:5878590] [General] -[QLPreviewPanel setDataSource:] called while the panel has no controller - Fix this or this will raise soon. See comments in QLPreviewPanel.h for -acceptsPreviewPanelControl:/-beginPreviewPanelControl:/-endPreviewPanelControl:. 2023-03-10 14:46:58.261948+0100 SwiftUI-Test1[998:5878590] [General] -[QLPreviewPanel reloadData] called while the panel has no controller - Fix this or this will raise soon. See comments in QLPreviewPanel.h for -acceptsPreviewPanelControl:/-beginPreviewPanelControl:/-endPreviewPanelControl:. I'm admittedly a bit lost - how are these messages to be understood and how can they be fixed. Xcode 14.2, macOS 13.2, Target: macOS Thanks! Gerald
2
1
1.1k
Mar ’23
Autoscroll NSOutlineView while dragging?
Does an NSOutlineView have built-in autoscrolling when the mouse is moved to the beginning or end of the NSOutlineView during a drag operation? As plan B I would create a tracking area at the top and bottom and trigger the scrolling while the mouse is over it - but a built-in solution would make more sense if available. Can someone give me a hint here? Thanks!
1
0
644
Nov ’21
Searching for Shortcuts with NSMetadataQuery?
Using Spotlight, the currently available shortcuts of the Shortcuts app can be displayed and opened/started under macOS 12. Since I would like to display a list of available shortcuts in my application, I wonder how this could be realized. Using NSMetadataQuery and the corresponding NSPredicate Spotlight can be accessed and searched. Files, directories and various other information can be requested from Spotlight this way, but I can't find a suitable search filter to give me the available shortcuts. Does anyone here have any ideas?
1
0
684
Oct ’21