Questions tagged [icloud-api]

111 questions
3
votes
2 answers

openWithCompletionHandler completion handler argument always = NO

I have such code(I try to open documents from cloud): NSPredicate *pred = [NSPredicate predicateWithFormat:@"%K ENDSWITH '.card'", NSMetadataItemFSNameKey]; NSMetadataQuery *query = [[NSMetadataQuery alloc] init]; [query setSearchScopes:[NSArray…
Siarhei Fedartsou
  • 1,843
  • 6
  • 30
  • 44
3
votes
1 answer

OSX Lion application with iCloud access

I need to build an application for Lion with iCloud functionality. I know that I have to sign the application in order to use entitlements options to enable iCloud. I do NOT have to distribute my application on MacStore, just to sell it directly to…
Sirio
  • 991
  • 2
  • 12
  • 27
3
votes
2 answers

Retro-fitting my app for iCloud

I have been puzzling about retrofitting my app for iCloud for a few days and hope someone can help. After getting past code signing issues I am not sure I understand the model for incorporating iCloud. I'll tell you the problem I'm trying to solve…
earnshavian
  • 1,864
  • 2
  • 13
  • 17
3
votes
2 answers

"Core Data with iCloud" vs "iCloud Core Data"

My question is: how do I find more information about "Core Data with iCloud" without finding too much "iCloud Core Data"? These two things are named very similarly, which makes it very hard to find information about one without also finding the…
user33675
  • 31
  • 3
3
votes
2 answers

CloudKit API with Python

My iOS app uses CloudKit as it's backend. The app basically collects simple user info (name, company, email phone). I would like to export all this data from the cloudkit dashboard into a csv file so that I can then upload this data into a…
3
votes
1 answer

Fetching all the notes from iCloud login user.

Please help me if anybody have any idea about fectching all notes from iCloud. I am using below examples iCloud integration AppCoda iCloud Programming but in above examples they are creating new notes and fetching them. In my case I need all notes…
Maishi Wadhwani
  • 1,104
  • 15
  • 24
3
votes
0 answers

How to upload file to iCloud Drive?

In My app I want to upload PDF files to iCloud drive which use can access from URL https://www.icloud.com/#iclouddrive . I have try mane code like https://github.com/iRareMedia/iCloudDocumentSync…
Crazy Developer
  • 3,464
  • 3
  • 28
  • 62
3
votes
0 answers

Access user's iCloud calendar without storing password

I would like to create a web application that would have access to the user's Apple Calendar for a personal project. But I really don't want to store the user's password. With Google it was really easy using OpenAuth. I know it is definitely…
Kasturi
  • 3,335
  • 3
  • 28
  • 42
3
votes
1 answer

Persisting a Receipt in iCloud using CloudKit in iOS

#1 I'm developing iOS App with a non-renewing subscription in it. I want to make the subscription available on all of the user’s devices and to let users restore the purchase. As said in Apple's docs: For non-renewing subscriptions, use iCloud or…
oleynikd
  • 896
  • 13
  • 33
3
votes
2 answers

Single C# API to access dropbox, iCloud, SkyDrive, etc.?

I am looking for a way to read files from all the various cloud storage systems out there without writing code for each specific API. Is there a way to accomplish this? What we need is pretty simple: A way to get folder contents for a FileOpen…
David Thielen
  • 28,723
  • 34
  • 119
  • 193
3
votes
2 answers

iCloud unique identifier

I'm trying to learn about iCloud. I've read that there's ubiquityIdentityToken and it's used to determine if iCloud is available or if the user changed the account signed in. Also, this is only available in ios 6+ But what i need to know is the…
cessmestreet
  • 2,298
  • 3
  • 22
  • 42
3
votes
3 answers

Programmatically resolve NSDocument iCloud version conflicts?

I have a Mac "Shoebox" app that internally uses NSDocument objects, but does not expose the concept of individual documents to the user. (I rely on NSDocument to make syncing via iCloud easier.) My problem is that when a version conflict arises, my…
Mark
  • 6,647
  • 1
  • 45
  • 88
3
votes
0 answers

Accessing credit card info stored in iCloud Keychain (iOS 7)

I wonder if it is possible to get the credit card information stored in the iOS 7 iCloud keychain from within my iOS App. I want users can make payments using the App (physical goods), but I do not want to deal with this kind of sensitive data in my…
tomacco
  • 710
  • 4
  • 26
2
votes
2 answers

Core Data + iCloud: Find NSManagedObject across devices

How do I find the same NSManagedObject object across 2 devices? I tried to save the [object objectID.URIRepresentation.absoluteString] but it doesn't seem to be consistent across stores ... when I load up [managedObjectContext objectWithURI] with…
Z S
  • 7,039
  • 12
  • 53
  • 105
2
votes
0 answers

How to properly Implement backup/restore(not sync, not core data app, not document based app) feature with iCloud?

I'm trying to backup(not sync) my app's user data and database using iCloud. What I'm trying to achieve is the on-demand backup and restore feature. I've created a folder structure like ubiquityContainerRoot/userId/deviceId/Documents/ and…
Nazmul Islam
  • 142
  • 9