Questions tagged [icloud-drive]

iCloud Drive is a cloud storage by Apple

Features:

  • Store and access all of your documents in one place from any of your devices
  • Keep files and folders up to date across all your devices
  • Create new files and folders from iCloud-enabled apps
  • Work on the same file across multiple apps

iCloud for Developers

187 questions
0
votes
0 answers

Difference between 'Core data without iCloud' and iCloud core data?

I had worked with Core data (using NSPersistentContainer, NSManaged object) to handle my local data storage in my previous application. Now i am looking to work with syncing data across the devices using iCloud core data storage. Is that the same…
Asiv
  • 23
  • 7
0
votes
0 answers

Clear memory when downloading from iCloud Drive

I have a little problem with memory usage. When I load images from drive, I use: func queryFinished(_ notification: Notification) { [...] document?.open(completionHandler: { (success) -> Void in if (success == true){ …
Selonath
  • 23
  • 3
0
votes
0 answers

Get file list from iCloud Drive iOS Objective c

i was able to download the images from iCloud Drive implementing this, but now i need to get all the files list from the iCloud Drive, but i am unable to fetch the list, i also tried using this, but it does not return any NSMetadataQuery results,…
Zღk
  • 854
  • 7
  • 25
0
votes
1 answer

Download image from iCloud Drive iOS objective C

I have gone through many links, but nothing worked for me. All i need to do is fetch all iCloud Drive files and download images. I succeeded fetching all files using below code - (void)presentDocumentPicker { NSArray *documentTypes =…
Zღk
  • 854
  • 7
  • 25
0
votes
2 answers

ios app containers sync with icloud

I am building an app that contains its own iCloud container. The capabilities configuration is attached below. Below is the key entry in Info.plist. iCloud.com.dearle.Ascert NSUbiquitousContainerIsDocumentScopePublic
0
votes
0 answers

weird behaviour with .framework files and iCloudDrive

I was wondering if anyone else has had this problem. I have my project files saved in iCloudDrive. As of late I have noticed that the framework files get duplicated and often aren't even the right size (i.e. Fabric, Crashlytics, FB). When I delete…
Joseph
  • 9,171
  • 8
  • 41
  • 67
0
votes
1 answer

Get file from iCloud drive without downloading?

How get file url from UIDocumentPickerController, for later upload to my server? Sending files as implemented Telegram. Now there is only the possibility to download a file from icloud and send later. But I want to learn how to implement in the…
Zept
  • 1,158
  • 1
  • 10
  • 14
0
votes
1 answer

Xcode and MacOS Sierra issues

I use 2 Macs with the same project coming from a git repository. On the first one, no problem: everything compiles and run smoothly. On the second new one with a fresh install of MacOS Sierra, I have a issues as soon as I am starting opening the…
Tulleb
  • 8,919
  • 8
  • 27
  • 55
0
votes
0 answers

Share files on iCloud drive between to different appleIDs

On OS X it seems to can share a file these days much like say dropbox or another, by right clicking it and choosing the application you want to get the link. So in this picture for example I can Mail user A and user B a copy of the files I want to…
user3069232
  • 8,587
  • 7
  • 46
  • 87
0
votes
1 answer

Read iCloud Drive into iOS, write to iCloud Drive so it is visible on Mac

I am trying to accomplish the following: Read a .csv file from iCloud drive that was placed there using the Mac. This works using UIDocumentPickerViewController. Process the file in iOS - this works fine Create the documents directory for my App in…
Rob
  • 757
  • 1
  • 10
  • 26
0
votes
1 answer

Xcode iCloud "Add the "iCloud containers" entitlement to your App ID"

For using iCloud Documents, is Xcode > Preferences > Accounts > Apple ID's role admin? I tested two accounts. Result : admin account - it has error that "Your account already has a valid iOS Development certificate". member account - it has…
dh0rmfpdlxm
  • 301
  • 1
  • 3
  • 16
0
votes
0 answers

How to get file list in iCloud Drive

I am implementing iCloud Drive in iOS app(objective c) I want to know how to get file list in root folder or specific folder.
dh0rmfpdlxm
  • 301
  • 1
  • 3
  • 16
0
votes
1 answer

UserDefaults in cloud vs Core Data in cloud

I'm trying to find the best way to store user settings (preferences) between devices. I have a big Core Data model which contains a lot of entities to store main info. To interact with this info, user has to choose some settings. So if I'd like to…
user6485277
0
votes
0 answers

App crash after turning off on iCloud Settings

I have fully working Core Data/iCloud app. But the problem I am having is when I was testing/searching for bugs, I found this one that I can´t solve even don´t know where to look at. It happens when I go to iCloud Settings and turn it off for my…
Marco Almeida
  • 1,285
  • 3
  • 17
  • 39
0
votes
0 answers

Can't upload files on iCloud drive

I'm created an app in order to unzip files from iCloud drive and extract their content on iCloud drive too. For the moment I can select the file I want to unzip thanks to UIDocumentPickerViewController. Once the file is selected, the delegate…