2,735 questions
0
votes
0
answers
28
views
Can I delete APS Environment for iCloud
I want to store a public database on iCloud that serves Key-Value configurations (similar to Firebase's remote config).
When I enable iCloud in Xcode "Signing & capabilities" tab, I see ...
1
vote
1
answer
48
views
What is a ubiquity container in iCloud Documents storage?
I have an app that stores user created JSON files successfully saving and loading to the local application documents directory. This directory is visible to the user. I would like to allow the user to ...
2
votes
0
answers
34
views
Check if Desktop/Documents are synched to iCloud
How do I check if the Desktop/Documents folders are synched to iCloud on macOS?
My application writes large databases files. When Desktop/Documents are synched to iCloud writing to the database ...
0
votes
0
answers
25
views
Apple Sign-In Callback Not Triggering - "PayloadTooLargeError: request entity too large" in Node.js
I am implementing Sign in with Apple in my Node.js application, but the callback function is not being triggered after entering credentials. Instead, I receive the following error:
...
0
votes
0
answers
31
views
Share iCloud Drive folder with Swift
Is it possible to programmatically create a shared iCloud Drive folder and then generate a link for external users to access it?
For instance, myApp utilizes iCloud Drive for storing certain files. ...
1
vote
1
answer
39
views
List view is not updating when iCloud is activated
The following code is working perfectly fine when iCloud is deactivated.
A meeting object is saved to the DB and the list on ContentView is updated properly.
But when I activate iCloud the list is not ...
0
votes
1
answer
126
views
Considerations for iCloud Drive/iCloud Support in Flutter Apps
I've been doing some research on setting up and enabling iCloud Drive or iCloud backup of user files in my Flutter app. The idea is that the user, with iCloud enabled, can switch to another device and ...
0
votes
0
answers
54
views
MacOS: trying to load evicted file from launch'd shell script, leading to resource deadlock error
On MacOS Sonoma (14.5) with iCloud synchronization switched on, I am trying to access or load a file in a (bash) shell script. Simply via:
cat DSC_0001.jpg >/dev/null
(Note that this simple line ...
1
vote
0
answers
27
views
Why is data not encrypted on icloud.developer.apple.com when i am using encrypted field
Here is my sample code of integration with iCloud
let dbName = "GroceryItem1"
let fieldName = "todoTitle1"
@objc func saveItem(name: String) {
let record = CKRecord(...
0
votes
0
answers
43
views
Email form getting randomly submitted by some weird Cloudflare caching?
I have a bizarre situation that my team and I haven't been able to put our finger on. I have a DNN-based website. I have a custom module that acts as a simple contact form. This contact form module ...
0
votes
0
answers
3
views
EKEventStore on Apple Watch not showing all calendars
I have released a watchOS-specific application that retrieves data from the iPhone calendar app and displays it on the Apple Watch.
It uses the calendars function in EKEventStore to retrieve the list ...
0
votes
0
answers
155
views
How to Create a New Folder in iCloud Documents Inside My App Name in Swift/SwiftUI?
I want to create a new folder in iCloud Documents inside my app's folder. I used the following code, and I have added iCloud from Xcode's Signing & Capabilities. However, I am getting the ...
1
vote
0
answers
31
views
CKUserIdentity `nameComponents` is Empty
My App requires that the user has and allows iCloud access. With that access I expect to be able to access the users name. Yet, the following code produces an empty nameComponents result from ...
0
votes
0
answers
42
views
Visual studio code cannot handle Git with GIT_DIR and GIT_WORK_TREE in separate folders
Context(can be skipped):
In many scenarios I wish to version control my files on iCloud drive, like my ledgers, notes, or diaries.
However If I just initialize a .git folder in my iCloud folder, ...
0
votes
1
answer
153
views
Why isn't SwiftData updating the items in a ForEach loop when synced with iCloud but it does if just used with a List
I have an app that uses SwiftData which is set to be synced with iCloud.
When I run the app in the simulator and on an actual device simultaneously and then amend the customer name on the simulator ...