Post

Replies

Boosts

Views

Activity

Reply to How to reproduce error: "The open file operation failed to connect to the open and save panel service"
@julia_brockovich I've submitted feedback FB12021387. Document Types from info.plist: <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> <plist version="1.0"> <dict> <key>CFBundleDocumentTypes</key> <array> <dict> <key>CFBundleTypeIconSystemGenerated</key> <integer>1</integer> <key>CFBundleTypeName</key> <string>Core Data Model</string> <key>CFBundleTypeRole</key> <string>Viewer</string> <key>LSHandlerRank</key> <string>Alternate</string> <key>LSItemContentTypes</key> <array> <string>com.apple.xcode.model.data</string> </array> </dict> </array> <key>ITSAppUsesNonExemptEncryption</key> <false/> </dict> </plist> The app is a macOS Document app built using SwiftUI
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Feb ’23
Reply to How to reproduce error: "The open file operation failed to connect to the open and save panel service"
Thank you for that - running on a Mac without Xcode installed did indeed reproduce the issue! Adding the following to the info.plist fixed the error that was appearing: <key>UTImportedTypeDeclarations</key> <array> <dict> <key>UTTypeDescription</key> <string>Core Data Model</string> <key>UTTypeIcons</key> <dict/> <key>UTTypeIdentifier</key> <string>com.apple.xcode.model.data</string> <key>UTTypeTagSpecification</key> <dict> <key>public.filename-extension</key> <array> <string>xcdatamodel</string> </array> </dict> </dict> </array> The app is used to open and view .xcdatamodel file (which is actually a package), and then writes an additional file within the .xcdatamodel package. Unfortunately, when Xcode isn't installed, the .xcdatamodel isn't recognised as a package, just a regular folder. I resolved this by adding a new exported type that conformed to com.apple.package <key>UTExportedTypeDeclarations</key> <array> <dict> <key>UTTypeConformsTo</key> <array> <string>com.apple.xcode.model.data</string> <string>com.apple.package</string> </array> <key>UTTypeDescription</key> <string>Core Data Model</string> <key>UTTypeIcons</key> <dict/> <key>UTTypeIdentifier</key> <string>uk.co.joylordsystems.xcode.model.data</string> <key>UTTypeTagSpecification</key> <dict> <key>public.filename-extension</key> <array> <string>xcdatamodel</string> </array> </dict> </dict> </array> This seems to have resolved my issues. Again, thank you for your help!
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Mar ’23
Reply to Xcode 13 typing is delayed / really slow
Xcode 13.1 on a week old MacBook Pro 16" M1 Max with 64GB RAM and it's laggy as hell. 🤦🏻‍♂️
Topic: Programming Languages SubTopic: Swift Tags:
Replies
Boosts
Views
Activity
Nov ’21
Reply to Xcode 13 typing is delayed / really slow
I got an email asking for additional information, but I can't see that they're asking for anything on the actual ticket. The only update I see is the number of similar tickets… Recent Similar Reports:Less than 10 For info, my ticket is FB9780474 (Xcode is laggy as hell)
Topic: Programming Languages SubTopic: Swift Tags:
Replies
Boosts
Views
Activity
Dec ’21
Reply to Xcode 13 typing is delayed / really slow
I'm using Xcode Version 13.2 RC (13C90). It's a little better, but I'm still having many instances where the entire UI hangs for a few seconds - so not fixed for me
Topic: Programming Languages SubTopic: Swift Tags:
Replies
Boosts
Views
Activity
Dec ’21
Reply to Xcode 13 typing is delayed / really slow
I can report that Xcode 13.3 is still terrible for our large project. Almost unusable, and people are still having to develop using 12.5.1, which is going to become a real issue when 13 becomes a requirement for submission very soon.
Topic: Programming Languages SubTopic: Swift Tags:
Replies
Boosts
Views
Activity
Apr ’22
Reply to Xcode 14 Beta 3 Core Data Model Editor Style
I’ve been working on a replacement CoreData graph viewer - if you'd be interested in being a beta tester, please let me know. My email address is on my StackOverflow profile https://stackoverflow.com/users/123632/ashley-mills?tab=profile
Replies
Boosts
Views
Activity
Feb ’23
Reply to How to reproduce error: "The open file operation failed to connect to the open and save panel service"
@julia_brockovich I've submitted feedback FB12021387. Document Types from info.plist: <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> <plist version="1.0"> <dict> <key>CFBundleDocumentTypes</key> <array> <dict> <key>CFBundleTypeIconSystemGenerated</key> <integer>1</integer> <key>CFBundleTypeName</key> <string>Core Data Model</string> <key>CFBundleTypeRole</key> <string>Viewer</string> <key>LSHandlerRank</key> <string>Alternate</string> <key>LSItemContentTypes</key> <array> <string>com.apple.xcode.model.data</string> </array> </dict> </array> <key>ITSAppUsesNonExemptEncryption</key> <false/> </dict> </plist> The app is a macOS Document app built using SwiftUI
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Replies
Boosts
Views
Activity
Feb ’23
Reply to How to reproduce error: "The open file operation failed to connect to the open and save panel service"
Thank you for that - running on a Mac without Xcode installed did indeed reproduce the issue! Adding the following to the info.plist fixed the error that was appearing: <key>UTImportedTypeDeclarations</key> <array> <dict> <key>UTTypeDescription</key> <string>Core Data Model</string> <key>UTTypeIcons</key> <dict/> <key>UTTypeIdentifier</key> <string>com.apple.xcode.model.data</string> <key>UTTypeTagSpecification</key> <dict> <key>public.filename-extension</key> <array> <string>xcdatamodel</string> </array> </dict> </dict> </array> The app is used to open and view .xcdatamodel file (which is actually a package), and then writes an additional file within the .xcdatamodel package. Unfortunately, when Xcode isn't installed, the .xcdatamodel isn't recognised as a package, just a regular folder. I resolved this by adding a new exported type that conformed to com.apple.package <key>UTExportedTypeDeclarations</key> <array> <dict> <key>UTTypeConformsTo</key> <array> <string>com.apple.xcode.model.data</string> <string>com.apple.package</string> </array> <key>UTTypeDescription</key> <string>Core Data Model</string> <key>UTTypeIcons</key> <dict/> <key>UTTypeIdentifier</key> <string>uk.co.joylordsystems.xcode.model.data</string> <key>UTTypeTagSpecification</key> <dict> <key>public.filename-extension</key> <array> <string>xcdatamodel</string> </array> </dict> </dict> </array> This seems to have resolved my issues. Again, thank you for your help!
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Replies
Boosts
Views
Activity
Mar ’23
Reply to App clip: userActivity.webpageURL is "https://example.com" for no reason
Did either of you manage to find a solution to this?
Topic: App & System Services SubTopic: General Tags:
Replies
Boosts
Views
Activity
Aug ’24