Running iOS 17 simulator crashes or is extremely slow or freezes. Using Xcode on M2 MacMini 8 gb RAM, 1TB HD.
Post
Replies
Boosts
Views
Activity
Previous betas built app but now errors appear I have 2 that appear.
Encountered an error communicating with IBAgent-IOS and this is for Launch Screen.storyboard
Command CompileAssetCatalog failed with a nonzero exit code.
I'm having an issue where when I am in a nested navigation view and use a popup view to add a core data object where when I dismiss the view instead of going 1 view back it goes to the root view.
I've tried many ways to dismiss the view. I have tried different ways of calling the popup view including:
Dismissing view:
@Environment(\.presentationMode) var presentationModel
then
self.presentationMode.wrappedValue.dismiss()
Calling and Dismissing view:
@State var showAddObjectView = false
.navigationBarItems(trailing: Button(action: {
self.showAddObjectView.toggle()
}) {
Image(systemName: "plus").imageScale(.large).font(Font.system(.body)).padding(15).accentColor(Color("BlackWhite"))
}.sheet(isPresented: $showAddObjectView) {
AddMoodView(showAddMood: $showAddMood, person: person).environment(\.managedObjectContext, self.managedObjectContext)
}
)
Then in the sheet view:
@Binding var showAddObjectView: Bool
Then on the save button:
self.showAddMood = false
Navigation work but instead of just going back one view it goes back to the root view. This is frustrating especially when you are 5 views in and just want to go back one view.
So when I turn off NSPersistentHistoryTrackingKey I get this error then the App Crashes:error: Store opened without NSPersistentHistoryTrackingKey but previously had been opened with NSPersistentHistoryTrackingKey - Forcing into Read Only mode store at ...CoreData: error: Store opened without NSPersistentHistoryTrackingKey but previously had been opened with NSPersistentHistoryTrackingKey - Forcing into Read Only mode store at...error: (8) attempt to write a readonly databaseCoreData: error: (8) attempt to write a readonly databaseFile is in Read Only mode due to Persistent History being detected but NSPersistentHistoryTrackingKey was not includedHow do I turn it off without having this happen?Ray