I'm using the new multiplatform target option in Xcode 14 to add an iPad target to an existing macOS app.
The macOS app uses the Sparkle framework to update itself. Sparkle is a macOS-only framework.
I added the iPad target and specified the Sparkle framework should only apply to the macOS build but when trying to build the app, Xcode complains that the Sparkle framework doesn’t exist for iOS (true but should not be relevant).
Xcode is trying to build/include Sparkle even though it’s marked to not include for iOS builds.
Has anyone had any success with this?
Selecting any option will automatically load the page
Post
Replies
Boosts
Views
Activity
I am trying to use the ModelContainer's "delete" function to delete all instances of a model but I'm getting an error related to my relationships:
Constraint trigger violation: Batch delete failed due to mandatory OTO nullify inverse on LeagueSeasonRanking/golfer
I do have a relationship on Golfer, a toMany relationship to LeagueSeasonRanking which is marked with a cascade delete rule... I would expect that to take care of things and cascade along but it seems to not work. Is that a bug?