I have a project which works fine when I build it for iOS 4.x, however it fails when I build it for iOS 5.x with a crash. To clarify, the 4.x build will run fine on iOS 5.1, however when I build against 5.0 or 5.1, I get the crash described below.
- (NSManagedObjectModel *)managedObjectModel
{
if (__managedObjectModel == nil)
{
__managedObjectModel = [[NSManagedObjectModel mergedModelFromBundles:nil] retain]; //crash
}
return __managedObjectModel;
}
I checked the docs, and supposedly supplying nil as for the parameter is supposed to default to the main bundle. Anyone know if anything that changed with CoreData that would cause this to happen?
For what it's worth, I've run the "Analyze" tool and no memory leaks or anything unusual is being reported.