The following line seems to always have a syntax error, any idea on how to fix it?
sourceModel = NSManagedObjectModel.mergedModelFromBundles(nil, forStoreMetadata:metaData) Error is "Extra argument forStoreMetadata in call"
The if I try the following
sourceModel = NSManagedObjectModel.mergedModelFromBundles( forStoreMetadata:metaData)
I get a "Missing argument for parameter #1 in call"
What gives?