我收到错误’使用未解析的标识符’Contacts”(这是我在’fileName.xcdatamodeld’中作为实体名称给出的名称).
import UIKit
import CoreData
class ViewController: UIViewController {
let managedObjectContext = (UIApplication.shared.delegate as! AppDelegate).persistentContainer.viewContext
override func viewDidLoad() {
super.viewDidLoad()
}
@IBAction func SaveContact(_ sender: Any) {
let entityDescription = NSEntityDescription.entity(forEntityName: "Contacts",in: managedObjectContext)
let contact = Contacts(entity: entityDescription!,insertInto: managedObjectContext) // Error: Use of unresolved identifier 'Contacts'
}
@IBAction func Findcontact(_ sender: Any) {
}
}
最佳答案 这是您在Xcode 8中配置Core Data codegen的方法:
你有3个选择:
>手动/无
>类定义
>类别/扩展
我认为它们非常明显.无论如何,你在这里想要的是类定义.