-
Apple’s privacy pillars in focus
At Apple, we believe that privacy is a fundamental human right. Learn about our four pillars of privacy, how we brought these principles together to design iCloud Private Relay, and how you can approach building privacy in your app in line with those fundamentals. Explore how you can build data minimization, on-device processing, transparency and control, and security protections right into your app.
Ressources
- App Store Guidelines: User Privacy and Data Use
- Human Interface Guidelines: Accessing User Data
- Introducing Private Click Measurement, PCM
Vidéos connexes
Tech Talks
WWDC22
WWDC21
-
Rechercher dans cette vidéo…
-
-
23:59 - Encrypt/decrypt data with CKModifyRecordsOperation
// Device 1: Encrypt data before calling CKModifyRecordsOperation. myRecord.encryptedValues["encryptedStringField"] = "Sensitive value" // Device 2: Decrypt data after calling CKFetchRecordsOperation. let decryptedString = myRecord.encryptedValues["encryptedStringField"] as? String
-