我正在使用Core Data开发应用程序。当我使用以下方法创建实例时:
let entity = NSEntityDescription.entityForName("User", inManagedObjectContext: appDelegate.managedObjectContext)
let user = User(entity: entity, insertIntoManagedObjectContext: appDelegate.managedObjectContext)
我在日志中收到警告:
CoreData: warning: Unable to load class named 'User' for entity 'User'. Class not found, using default NSManagedObject instead.
我该如何解决?
还有另一个问题,如何在NSManagedObject子类中定义实例方法?
编辑:
我已指定实体的类别,如以下屏幕截图所示: