Post

Replies

Boosts

Views

Activity

Comment on Dynamic Compound Predicates
Alright, I’ve filed a new feedback for a back deployment request – see: FB23091431 For me the main use case is the EntityPropertyQuery in the App Intents framework as linked in my initial question as well. For that I’ll use these dynamic compound predicates and that would of course be super great to not limit to 27+ releases. At least if it seems to be possible to back deploy. Thanks in advance for taking a look! 🙏
Topic: SwiftData SubTopic:
SwiftData Q&A
Jun ’26
Comment on Dynamic Compound Predicates
This is great news, thanks! Would be great to get some more guidance/examples on how to use that in the Predicate Documentation. 😉 Does that mean this is only usable for deployment targets of anyAppleOS 27+ or can that be used for OS 26 or earlier as well?
Topic: SwiftData SubTopic:
SwiftData Q&A
Jun ’26
Comment on Xcode 26 SDK/Simulator Download Issue: (-67061 invalid signature (code or signature have been modified)
The problem is not that I’m not getting asked to download the simulators. I got initially after download, but it failed. And when downloading it in Xcode settings it continues to fail. Both in β6 and β7. I’ve now downloaded Xcode β5 again and it works. I can’t upload new TestFlights because of this, but at least I can continue developing. And btw, I’ve already filed a feedback as linked in the original post 😉 No response yet, though …
Aug ’25
Comment on Strings Catalog (.xcstrings) plural rules without format (Xcode 15)
From my testing it works as expected using a .stringsdict file. I could not get it to work properly with the newer .xcstrings file, even when properly marking the generated string as „Vary by Plural.“ As Apple is using it in their own example as well, I guess we have to use the .stringsdict. I’ve simply created a separate one just for the AppEntity typeDisplayRepresentations.
Mar ’25
Comment on Migrate Core Data to SwiftData in an App Group (& CloudKit)
I’ve changed the data model in my MigrationPlan, so I don’t think you need to keep the models in sync. Works for me to keep the Core Data model at the old state before switching and migrating to SwiftData. 🤔 Yeah true, that’s weird that the „old“ .sqlite files won’t automatically get transferred. Seems like a bug to me. Thanks for the hints for enabling iCloud! Will keep an eye on that once I get to that, but sounds like I’m already at a good base.
Topic: App & System Services SubTopic: iCloud Tags:
Dec ’24
Comment on Dynamic Compound Predicates
Alright, I’ve filed a new feedback for a back deployment request – see: FB23091431 For me the main use case is the EntityPropertyQuery in the App Intents framework as linked in my initial question as well. For that I’ll use these dynamic compound predicates and that would of course be super great to not limit to 27+ releases. At least if it seems to be possible to back deploy. Thanks in advance for taking a look! 🙏
Topic: SwiftData SubTopic:
SwiftData Q&A
Replies
Boosts
Views
Activity
Jun ’26
Comment on Fit Sheet height to view content
Thanks a lot for your comment and improvement tip! 🙏 I don’t have a List or async loading in my case, but that is good to know to be aware of.
Topic: SwiftUI SubTopic:
SwiftUI Q&A
Replies
Boosts
Views
Activity
Jun ’26
Comment on Fetch data in a time range, plus extend one more entry
Thanks for the idea to use fetch requests that are greater or less than the date range with a limit of 1. That could work! Will try that in my app.
Topic: SwiftData SubTopic:
SwiftData Q&A
Replies
Boosts
Views
Activity
Jun ’26
Comment on Dynamic Compound Predicates
This is great news, thanks! Would be great to get some more guidance/examples on how to use that in the Predicate Documentation. 😉 Does that mean this is only usable for deployment targets of anyAppleOS 27+ or can that be used for OS 26 or earlier as well?
Topic: SwiftData SubTopic:
SwiftData Q&A
Replies
Boosts
Views
Activity
Jun ’26
Comment on Using .glassEffect in Charts
That code doesn’t work at all as Xcode is complaining with: Cannot find type 'Charting' in scope
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Replies
Boosts
Views
Activity
May ’26
Comment on Icon Composer icons together with iOS 18 icons
Hi @JackRose666, I only saw your question now. I don’t know why the clear and dark modes don’t work in your case. Have you tried to clean the build folder? I’ve noticed that Xcode heavily caches the app icon between builds, so changes might only show up after a „Clean Build Folder“.
Replies
Boosts
Views
Activity
Oct ’25
Comment on Icon composer icon contains alpha channel upload error
Thanks for testing and finding a way to solve this issue. Disabling the blur (or reducing the amount of blur) on layers close to the edge of the canvas helped! 👍
Replies
Boosts
Views
Activity
Sep ’25
Comment on Xcode 26 SDK/Simulator Download Issue: (-67061 invalid signature (code or signature have been modified)
The problem is not that I’m not getting asked to download the simulators. I got initially after download, but it failed. And when downloading it in Xcode settings it continues to fail. Both in β6 and β7. I’ve now downloaded Xcode β5 again and it works. I can’t upload new TestFlights because of this, but at least I can continue developing. And btw, I’ve already filed a feedback as linked in the original post 😉 No response yet, though …
Replies
Boosts
Views
Activity
Aug ’25
Comment on Xcode 26 SDK/Simulator Download Issue: (-67061 invalid signature (code or signature have been modified)
I’ve already tried re-downloading Xcode multiple times. Tried it from xcodereleases.com again and same issue. Once initiating the SDK download it’s stuck a while at the „registering download“ step and then always fails with the error mentioned in the OG post.
Replies
Boosts
Views
Activity
Aug ’25
Comment on Icon Composer icons together with iOS 18 icons
I’m using Xcode 26 beta 4 here and it still shows the glass icon on iOS 18 after following those instructions and both naming it "AppIcon". Even after removing the app from my test device and cleaning the build folder. Anyone else having this issue?
Replies
Boosts
Views
Activity
Jul ’25
Comment on Strings Catalog (.xcstrings) plural rules without format (Xcode 15)
From my testing it works as expected using a .stringsdict file. I could not get it to work properly with the newer .xcstrings file, even when properly marking the generated string as „Vary by Plural.“ As Apple is using it in their own example as well, I guess we have to use the .stringsdict. I’ve simply created a separate one just for the AppEntity typeDisplayRepresentations.
Replies
Boosts
Views
Activity
Mar ’25
Comment on iPadOS 18 TabView with Large Navigation Title
Thanks for the response! I’ve filed a feedback with that feature request – if anyone else wants to join with a duplicate: FB16260592
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Replies
Boosts
Views
Activity
Jan ’25
Comment on How to use a Decimal as @Property of AppEntity
Ups, I totally mixed that up! 😅 Thanks for the hint! Seems like the only viable option that is supported is then to convert to a Double and back for the intents.
Topic: Machine Learning & AI SubTopic: General Tags:
Replies
Boosts
Views
Activity
Dec ’24
Comment on Migrate Core Data to SwiftData in an App Group (& CloudKit)
I’ve changed the data model in my MigrationPlan, so I don’t think you need to keep the models in sync. Works for me to keep the Core Data model at the old state before switching and migrating to SwiftData. 🤔 Yeah true, that’s weird that the „old“ .sqlite files won’t automatically get transferred. Seems like a bug to me. Thanks for the hints for enabling iCloud! Will keep an eye on that once I get to that, but sounds like I’m already at a good base.
Topic: App & System Services SubTopic: iCloud Tags:
Replies
Boosts
Views
Activity
Dec ’24
Comment on Custom System Image for App Shortcut
What a bummer that this isn’t supported yet. 😢 I’ve created a feedback now. Please create duplicates and link to this one to show Apple we need this. My feedback number is: FB15094698
Topic: Machine Learning & AI SubTopic: General Tags:
Replies
Boosts
Views
Activity
Sep ’24