Post

Replies

Boosts

Views

Activity

Reply to NSStagedMigrationManager shortcomings
I think the problem here is that you've introduced a new foo attribute with a different type. Even though the old attribute goes away in model 2, I guess it thinks this attribute in model 3 is supposed match up with the one in model 1. You can fix this by giving the new foo a renaming identifier so that it sees these are different.
Topic: UI Frameworks SubTopic: General Tags:
Oct ’25
Reply to Xcode 15 and "reexported library couldn't be matched with any parent library" warnings
I am getting this error for several Quartz libraries (Xcode 15.4 on macOS 14.4.1), but only when building for x86_64. It happens both for Objective-C and Swift targets. For Objective-C, it helped to replace imports of the Quartz umbrella framework with imports of the particular ones that I need. For Swift, I added -Xfrontend -disable-autolink-framework -Xfrontend Quartz to OTHER_SWIFT_FLAGS. Another app got this error when not even using Quartz, but it helped to disable CLANG_MODULES_AUTOLINK.
Jun ’24