Aleksander Stojanowskistojanowski.dev·Aug 26, 2024Sort It OutEvery app contains data that is shown to the user, and in most cases, users like to have at least a little control over how the data is displayed to them. The easiest way to give users some control is to allow them to choose by which property and in ...Discuss·94 readsSwift
Bruno Faganellofaganello.dev.br·Nov 8, 2023Guia sobre SwiftData - ModelsO que é o SwiftData Primeiro de tudo é que não podemos confundir o SwiftData com um Banco de Dados, o SwiftData é basicamente um ORM (Mapeamento objeto-relacional (Object–relational mapping)). Para curiosidade dos demais, o banco de dados padrão do i...Discuss·1 like·58 readsiOS
Kris Slazinskiblog.next-planet.com·Oct 25, 2023Naming conventions - Core Data and SwiftDataIn this article, I will show you what naming conventions I am using for Core Data entities and attributes and how SwiftData changed my approach. I am not saying that this convention is the best one and the one you should use. But I want to tell you w...Discuss·11 likes·427 readsiOS
Denis Mukhamuhden.hashnode.dev·Sep 13, 2023Managed object contexts hierarchyIn CoreData we can create multiple managed object contexts using 2 different approaches: connecting all of them directly to the persistent store (left side of the picture) and making a parent-child relationship (right side of the picture) Let's comp...DiscussCoreData
Denis Mukhamuhden.hashnode.dev·Aug 16, 2023CoreData stackCoreData framework can be used on both iOS and Mac devices. SQLite databases produced on Mac can be loaded and used on iOS (at least so far). And in general, CoreData supports 4 different types of persistent stores: SQLite database In-Memory storag...DiscussCore data
Denis Mukhamuhden.hashnode.dev·Jul 17, 2023Core Data blogLet me introduce myself - my name is Denis Mukha and I've been developing applications for the iOS platform since the appearance of iOS 4 and starting with MRC. In 2015 I started using CoreData and now in our project, we have 6 different databases wi...DiscussCore data
ROHIT KUMARrohit-13.hashnode.dev·Jul 17, 2023All about UserDefaults, KeyChain and CoreData — iOSIn this article, we will have a detailed discussion about when and how to use UserDefaults, Core Data and Keychain in our iOS app project. This write-up will touch upon the following topics and you will get a proper understanding of these concepts al...DiscussSwift
Xavierxavier7t.com·Feb 11, 2023CRUD with Core Data in SwiftUICore Data is often considered the default way when it comes to data persistence or caches. Today we’ll look at how to CRUD (create, read, update and delete) records with Core Data in SwiftUI. We’re going to create a simple app for users to take notes...Discuss·1.6K readsiOS
Niels Mouthaannielsmouthaan.hashnode.dev·Jul 11, 2022Limitations of NSPersistentCloudKitContainer when importing many recordsIntroduction The first version of Daily, a time tracking app for Mac, was released in 2013. It used Core Data to store data. Later, when NSPersistentCloudKitContainer was introduced, I added support for iCloud for synchronization and backup purposes...Discuss·253 readsSwift