Problems using Core data.
I have version 14.3.12 of Xcode installed. Unfortunately, after creating a "Libro" entity and using the NSMMenagedObject Subclass creation function, I have an error code in the files created by it. That is, two new files are created respectively with the name “Libro+CoreDataClass” and “Libro+CoreDataProperties”. The following code is created in the first file: import Foundation import CoreData
@objc(Libro) public class Libro: NSManagedObject {
} the following error message appears on the same line as the "Libro" class definition: invalid redeclaration of 'Libro' the compilation fails and is not executed. Does anyone have a solution?