Reputation: 9493
Environment: Xcode Version 6.3.2 (6D2105)
Why am I getting the "Unable to load class..." when referencing a NSManagedObject subclass?
I've check the target and it has the 'History.swift' file for compilation:
Yet, it still doesn't see it.
Why?
Upvotes: 0
Views: 299
Reputation: 11555
It is looking for PRODUCT_MODULE_NAME.History
class. Go to the Core Data Model editor and the right hand side inspector and make sure it is named RicCalendar.History
.
Upvotes: 2