I wish to migrate from my version1 data model to version2, but once the migration is complete I wish to perform some custom migration code. How will I know if/when the migration occurs? Is there a migrationHasCompleed delegate method or notification?
For interests sake: The custom migration code I wish to perform resizes png’s in the database.
Well, you could run this code right after the migration happen, on your persistent store coordinator setup:
Cheers,
vfn