Upvote:2

Aprove answer
public lazy var managedObjectModel: NSManagedObjectModel = {
        // The managed object model for the application. This property is not optional. It is a fatal error for the application not to be able to find and load its model.
        let modelURL = NSBundle.mainBundle().URLForResource("CoreDataWatch", withExtension: "momd")!
        return NSManagedObjectModel(contentsOfURL: modelURL)!
        }()

Credit Goes to: stackoverflow.com

Related question with same questions but different answers