The issue While writing an iOS app in Swift using CloudKit and CoreData with NSPersistentCloudKitContainer, I ran into the issue “Field ‘recordName’ is not marked queryable” and couldn’t see an obvious solution. Searching online didn’t give many helpful results either. This error message would show up in the CloudKit Dashboard as well as in theContinue reading “How to fix “Field ‘recordName’ is not marked queryable” in CloudKit”
Tag Archives: Swift
WebDAV Swift Released
WebDAV Swift is a Swift library for communicating with WebDAV servers such as Nextcloud. Version 2.2.0 has released which brings it to a point where I feel like it is ready to be shared. Features Create, read, update, and delete files Image thumbnail fetching from Nextcloud servers Multi-level memory and disk cache for images andContinue reading “WebDAV Swift Released”
Character Tracker v1.2 with mod tracking and QR code scanning
My Character Tracker for Skyrim app has been updated to v1.2. This is a very important update to me as it adds tracking for mods and DLC, a feature I’ve been hoping to implement from the start. It’s now not only a character tracker, but a mod tracker too! While the original app was buildContinue reading “Character Tracker v1.2 with mod tracking and QR code scanning”
SwfitUI 2 on iOS 14 Fixes Swipe-to-Delete
A few weeks ago I wrote an article about how I attempted to fix the terrible swipe-to-delete animation in SwiftUI. While my solutions weren’t perfect, they were better than what SwiftUI came with. Well with the releases of iOS 14 and Xcode 12 betas, Apple has fixed swipe-to-delete. It now functions in SwiftUI just likeContinue reading “SwfitUI 2 on iOS 14 Fixes Swipe-to-Delete”
The quest to make SwiftUI swipe-to-delete not look and feel terrible
I don’t know if I’m the only one who feels this way, but I hate the way the swipe-to-delete function looks and feels in SwiftUI. In UIKit, after you swipe a cell, the background animates to fill the rest of the cell with destructive red and the cell collapses. This feels like it’s finishing theContinue reading “The quest to make SwiftUI swipe-to-delete not look and feel terrible”
Preloading new data in iOS app updates in Swift
For many apps it is useful to preload data, either to provide examples for the user to reference, or as a starting place for them to work from. This article will not go over specifically how to load data, but rather how to add new data with an app update. For example, an app mightContinue reading “Preloading new data in iOS app updates in Swift”