How to fully remove macOS Xcode application?

I’m working on a multiplatform app using Xcode and SwiftUI. A couple weeks ago I changed my CloudKit data and now the application won’t run as I’m getting a fatalError. I got the iOS application running again by uninstalling the app and running Xcode so it installs it fresh. I can’t figure out how to… Read More How to fully remove macOS Xcode application?

How to create a local Object from a CKRecord and append it to an array for NSTableView data

I’m working on a note app project for macOS with cloud capabilities, particularly downloading another person’s note given the notes "CloudID" which is just the unique name which the cloud database gives the record when the note is uploaded to the cloud. I’m using an sqlite database for local data storage and a cloudKit database… Read More How to create a local Object from a CKRecord and append it to an array for NSTableView data

CloudKit -How to Cancel a Save/Upload Operation that's in Progress

Is there a way to cancel a CloudKit save or upload operation that’s in progress? This isn’t a time-out situation. I notice videos take some time to upload and the user might decide to dismiss the vc. I would like to cancel the current upload if they do that. let database = CKContainer.default().publicCloudDatabase var operation:… Read More CloudKit -How to Cancel a Save/Upload Operation that's in Progress