Previewing ContentView with CoreData

后端 未结 3 682
长情又很酷
长情又很酷 2020-12-05 08:16

When I try to a SwiftUI ContentView that contains a CoreData fetch request, the preview crashes. Wondering what the correct way to setup the @environment so the preview can

3条回答
  •  不知归路
    2020-12-05 08:49

    This seems to work for the preview.

    struct ContentView_Previews: PreviewProvider { static var previews: some View { ContentView().environment(.managedObjectContext, PersistenceController.preview.container.viewContext)

    My question, how to make it work on the simulator...

提交回复
热议问题