Use the articles below for the larger CloudKit architecture story, then use related snippets for concrete repair work such as CloudKit model rules, macOS sync fixes, and initializeCloudKitSchema troubleshooting.
Core Data with CloudKit
Follow this path when you need Core Data persistence to sync through iCloud, including setup, model constraints, synchronization behavior, and live sync-state handling.
Core Data with CloudKit: The Basics
Core Data with CloudKit brings cloud storage and multi-device synchronization capabilities to Core Data applications. This article will introduce the basic knowledge of it.
Core Data with CloudKit: Syncing Local Database to iCloud Private Database
In this article, we will explore the most common scenario in Core Data with CloudKit applications—synchronizing the local database with the iCloud private database.
Core Data with CloudKit: Exploring the CloudKit Dashboard
This article explores the CloudKit dashboard.
Core Data with CloudKit: Troubleshooting
This article discusses some common issues encountered in developing Core Data with CloudKit projects, aiming to help everyone avoid detours and pitfalls.
Core Data with CloudKit: Synchronizing Public Database
This article will introduce how to synchronize a public database to the local environment, creating a local Core Data database mirror using Core Data with CloudKit.
Core Data with CloudKit: Sharing Data in the iCloud
In this article, we will explore how to create applications that share data with multiple iCloud users using Core Data with CloudKit.
Switching Core Data Cloud Sync Status in Real-Time
Core Data with CloudKit itself does not offer an option to enable or disable cloud synchronization in real-time. This article will attempt to propose a solution to this issue.
Cloud Document Service.
For document-based apps, these articles compare iCloud Documents workflows from basic integration to advanced coordination and file handling.
In-Depth Guide to iCloud Documents: Fundamental Setup and File Operations
In this article, we will discuss how to integrate iCloud Documents into applications, perform file read and write operations, and respond to changes in file content.
Advanced iCloud Documents: Understanding Placeholder Files, Space Optimization, and Operational Techniques
In this article, we will discuss the unique characteristics of the iCloud Documents folder, the importance and applications of placeholder files, and we will also explore tips and techniques related to file operations and debugging.
Cloud Key-Value Data Storage Service.
A lightweight path for small preference-like values that should follow a user across devices, with NSUbiquitousKeyValueStore as the main API.
Using NSUbiquitousKeyValueStore with SwiftUI
NSUbiquitousKeyValueStore is an official solution provided by Apple for sharing key-value data across devices. This article offers a simple introduction to its usage, focusing on how to conveniently use NSUbiquitousKeyValueStore in SwiftUI.