以前のストーリーボードのユーザー入力名を、名前 "name"のエンティティ "UserInfo"のxcdatamodelに保存しました。私は次のストーリーボードでそれを取り出して、ユーザーを迎えるためのラベルを表示しようとしています。私はエラーが「タイプの初期化子を呼び出すことはできません種類のリストを引数と 『NSFetchRequet』「(エンティティネーム:文字列、attributeNameの:String)を」取得していますフェッチ要求エラー
guard let appDelegate = UIApplication.shared.delegate as? AppDelegate else {
return
}
//getting the managed context where the entity we need is
let managedContext = appDelegate.persistentContainer.viewContext
//make fetch request
let fetchRequest = NSFetchRequest<NSManagedObject>(entityName: "UserInfo", attributeName: "name")
//try to fetch the entity we need, else print error
do {
Username = try managedContext.fetch(fetchRequest)
} catch let error as NSError {
print("Could not fetch. \(error), \(error.userInfo)")
}