NSEntityDescription、NSManagedObjectがunresolvedと出た時

ViewController.swift

override func viewDidLoad() {
        super.viewDidLoad()
        
        let appDelegate = UIApplication.shared.delegate as! AppDelegate
        let context = appDelegate.persistentContainer.viewContext
        let entity = NSEntityDescription.entity(forEntityName: "Users", in: context)
        let newUser = NSManagedObject(entity: entity!, insertInto: context)
        // Do any additional setup after loading the view, typically from a nib.
    }

よくみたら、import UIKitだけでした。。。。。 coredataもimportします。

import UIKit
import CoreData

エラーが消えました。何だよ!