The tag has no wiki summary.

learn more… | top users | synonyms

24
votes
5answers
6k views

iCloud basics and code sample [closed]

As a beginner, I'm struggling with iCloud. There are some samples, but they are usually quite detailed (on the developer forum there is one for iCloud and CoreData which is massive). The apple docs ...
15
votes
2answers
279 views

core data iCloud merge protocol

I've managed to get my existing core data app to work with iCloud. After days of study, it was actually surprisingly simple. It seems that 3 things are essential: to add an entitlements file (in ...
13
votes
3answers
579 views

MPMediaItem and iTunes Match

I have an app that uses the iPod Library API to access the song database in iOS. With the release of iTunes Match, any song which is not on the device will fail to load. Is there a way I an request ...
12
votes
3answers
1k views

Crash when adding persistent store (iCloud enabled) in app delegate

I am going to start updating this to help those seeking to use this as reference for their own personal code. Using iCloud on iOS 5.0.1, I'm occasionally getting errors pertaining to the persistent ...
9
votes
3answers
324 views

Can developers use iCloud in Windows apps?

Developers can use Apple’s iCloud APIs to sync app data between different versions of their app on Mac OS X and iOS. If a developer has a Windows version of their app, can this version also use ...
9
votes
0answers
882 views

iCloud Legal Information when visiting iTunesConnect [closed]

I have just visited itunesconnect.apple.com and the first thing I got is: Do you have any apps that may have a legal issue? What that suppose to mean?
8
votes
1answer
133 views

iCloud + CoreData - how to avoid pre-filled data duplication?

I have a problem with an iCloud shoebox application and hope some-one can help me (I've spent many hours fighting it in vain). The App: - A simple library style application - containing set of ...
8
votes
2answers
365 views

Syncing an existing Core Data store with iCloud

I am trying to get iCloud to work with my app, which needs to migrate an existing local store to a ubiquitous store, if the user requests it. After some nosing around Apple dev forums and ...
8
votes
2answers
341 views

Beta-testing a Mac App Store app

I have an app that I'm going to put in the Mac App Store. I'd like to add iCloud support for preference syncing, and for that reason, I'd like to distribute the betas signed in such a way that they ...
8
votes
1answer
628 views

Will iCloud keep user's data that was belonging to a deleted app?

My use case is: User downloads my app and uploads some data/Files onto iCloud within the sandbox of my app. User deletes my app Questions: Will iClould keep user's data that was belonging to the ...
6
votes
1answer
341 views

iOS - How to know if iCloud photo transfer ability is enabled

The new iCloud service has many possible configurations. How may I know if the device of my user is configured to send taken pictures to an iCloud server instead of storing them just on the device ?
6
votes
3answers
1k views

iCloud: can I ignore those who disable iCloud?

I'm struggling a bit with the idea of iCloud and posted a more general question here. My biggest problem is to decide whether I should stop putting the user's data in the good old documents folder ...
6
votes
4answers
4k views

Can you sync CoreData with iCloud?

does anyone know if and how you can sync CoreData apps with iCloud? If I understand the Apple iCould instructions right you can not sync CoreData, can you?
5
votes
2answers
548 views

Syncing a local sqlite file to iCloud

I store some data in my iOS app directly in a local .sqlite file.  I chose to do this instead of CoreData because the data will need to be compatible with non-Apple platforms. Now, I'm trying to come ...
5
votes
2answers
1k views

iCloud + Storage of media in iPhone Documents folder

I, like many developers, got an email from Apple recently that stated we should move our data from the documents directory into another folder to permit more streamlined backup to iCloud. In ...
4
votes
1answer
64 views

How to prevent app from getting backed up to iCloud

I'm having some trouble getting an app accepted into the App Store. The problem is that the database is getting backed up to the iCloud, according to Apple, although I attempted to prevent that by ...
4
votes
1answer
243 views

Prevent Backup to iCloud,is following code correct?

I am downloading many audio and video files and stored them in my Home directory. Now i want to "prevent backup to iCloud" so i have added following code for my every file's url - ...
4
votes
3answers
901 views

iOS5 data storage issue. Where to save files?

Firstly, I have read these: (1) http://www.gaiagps.com/news/article/iOS5%20Breaks%20Data%20Storage%20and%20Crushes%20My%20Soul (2) ...
4
votes
1answer
1k views

Core Data iCloud sync between two apps (iPhone and iPad)

I submitted my first iPad app to apple a few days ago. In the meantime the iPhone version of it is almost ready. I would like to use iCloud to synchronize the core data model between both apps. Is it ...
4
votes
1answer
385 views

iCloud: How to read in directories created by the user

I would like to read in a list of all directories that are created either by the user or the app in iCloud's Mobile Documents directory (the one found in Lion under ~/Library/Mobile Documents). Here ...
4
votes
2answers
321 views

iPhone and Webapp sync through iCloud ??

just checking if its possible to sync iOS devices AND a web app through iCloud. Currently we've got an iOS app built, are looking at using iCloud for synching between all the devices and also want a ...
4
votes
3answers
3k views

Disable iCloud sync

Is there a way to prevent your application data (Documents folder contents) from being synced to iCloud? (other then storing it in Caches directory because of the new issues in iOS5 with doing that) ...
4
votes
1answer
425 views

Can iCloud Be Used To Exchange Data Between Users?

I need to develop an App that allows a team leader to create tasks and assign them to other team members, then allow both the team leader and the members to update said tasks as needed. Yes, I know - ...
3
votes
1answer
106 views

NSMetadataQuery ignoring custom file package type

I'm using UIManagedDocuments to manage my files in iCloud. After setting up the NSMetadataQuery like so: iCloudQuery = [[NSMetadataQuery alloc] init]; [iCloudQuery setSearchScopes: [NSArray ...
3
votes
1answer
90 views

iCloud Support in an application for Mac OS X Lion

Within a Mac OS X (10.7 Lion) Non-Document Based application, I want to include iCloud support so I can share data across other instances of the same application on other macs (not to iOS devices). ...
3
votes
1answer
215 views

Managing Core Data iCloud Transaction Logs

I am using iCloud with Core Data, based on the SQLite "Library-style" application design as specified by Apple. While the basic functionality works very well, I am concerned about the transaction logs ...
3
votes
1answer
232 views

Syncing a .plist file with iCloud

I am trying to work out how to sync a .plist file I have in the "Application Support" folder in my Sandboxed app for the Mac. I know I could use the iCloud key value store, but there is a limit of ...
3
votes
1answer
472 views

iCloud syncing Ubiquity error

I integrated iCloud in my application and the syncing works, but sometimes I get this error: +[PFUbiquityTransactionLog loadPlistAtLocation:withError:](324): CoreData: Ubiquity: Encountered an ...
3
votes
2answers
332 views

Importing data into iOS app, now that iCloud replaced iTunes

Until now it was possible to import data into an iPhone app using iTunes file sharing. The data (e.g. a pdf, doc or custom file format would then show up in /Documents directory and could be used by ...
3
votes
2answers
277 views

Incorrect path from URLForUbiquityContainerIdentifier (iCloud)

I use an external hard drive for my user data, and 2 weeks ago I had a crash and changed to a new disc with another name. I do this on User & Groups advance options on the preferences panel. My ...
3
votes
1answer
1k views

iOS 5.0.1 : How to verify that the folder is marked as “Do not back up” for iCloud?

I want to set Do not back up to my folder which is in Document Directory. I found code for "Do not back up" , but how do i verify that the folder is marked.
3
votes
2answers
443 views

How to use NSUbiquitousKeyValueStore and NSUserDefaults together

Documentation is not clear on how to use NSUbiquitousKeyValueStore with edge cases. If I want to set a value, I understand that I should set a value to both NSUserDefaults and ...
3
votes
2answers
342 views

iCloud - Moving the file completed

I can able to move a file from the local directory to iCloud using the condition setUbiquitous:YES. The file has been moved successfully. If the file size is large, it takes certain time to complete ...
3
votes
2answers
451 views

Is IOS 5 UIDocument subclass backwards compatible?

To support iCloud, we're encouraged to use a UIDocument subclass. If I define a new subclass, set the project target version to 3.0, and test using for iOS 5 before using my new subclass, will the ...
3
votes
1answer
239 views

ICloud's photo stream API?

Is there any API that would help me to extract pictures from my iCloud's photo stream on Mac ? Thanks !
3
votes
1answer
442 views

iCloud, Core Data, migration and model mapping

As said in the Apple documentation Schema migration using mapping models is not supported (lightweight migration is supported). I was wondering about options we have in case we need to deal ...
3
votes
1answer
1k views

Using iCloud in iOS Simulator

In my App, when I try to run code in the iOS Simulator: NSURL *iCloudURL = [fileManager URLForUbiquityContainerIdentifier:@"2VHM28566N.com.eept.TestICloud"]; NSLog(@"IS ICloud : %@", [iCloudURL ...
3
votes
3answers
362 views

iCloud makes it possible for users to “steal” In-App Consumables

In my app, users purchase consumables, let's say suitcases, that are stored in Core Data. When the user first installs the app, I give them a freebie to get started. The app can't function without at ...
3
votes
1answer
775 views

I'm not getting the NSPersistentStoreDidImportUbiquitousContentChangesNotification (with code sample)

I'm trying to learn how to use iCloud with coredata. My target is to sync a single database file on mac/ios. Both my mac and iOS apps seem to be updating iCloud as I can see it under System ...
2
votes
1answer
64 views

iOS - how to structure database to conform to iCloud backup rules

I've been having trouble getting an app submitted to the App Store. This is due to the fact that that database, which is updatable, is too large for the iCloud backup limitations. Most of the data in ...
2
votes
1answer
49 views

Allowing the user to edit/view existing documents when iCloud becomes unavailable

I'v been reading through the Apple Docs, read through a couple tutorials online, and even watched the CS193p lectures on iCloud however there is still one thing I'm not clear about: Take the case ...
2
votes
1answer
45 views

iCloud for all users of my app?

My first app is waiting approval in the store, wish me luck. My question: I bundle in a collection of presets, logos and URLs, several dozen, to make adding new entries easy. I want to be able to ...
2
votes
1answer
102 views

Share files between applications in iCloud

I have a 'light'/'free' application and a full version of this app. I want to make sure that if a user has the free version and purchases the full version, then they will get a message asking if they ...
2
votes
2answers
622 views

UIManagedDocument example / tutorial

I have been trying very unsuccessfully to create a simple UIManagedDocument library style application (separate documents saved to iCloud). I am confused with the following: Do I subclass ...
2
votes
1answer
286 views

App Sandbox/iCloud and Snow Leopard backwards compatibility

By now all Mac App Store developers know that all apps must have the new OSX Lion Sandboxing enabled going forward. For existing apps, we must enable it in XCode 4.2 and set in place the data ...
2
votes
1answer
190 views

UIManagedDocument migrate data model

I am working on an iPhone app that uses a subclass of UIManagedDocument and stores its documents on iCloud. It was all working fine until I changed my core data model / scheme (adding a new model ...
2
votes
2answers
364 views

URLForUbiquityContainerIdentifier returns nil even if configured correctly

I am having the problem, that URLForUbiquityContainerIdentifier is returning nil in some cases even if the user has set up everything correctly in the settings. My code: dispatch_async(someQueue, ^{ ...
2
votes
0answers
187 views

Sharing a plist file using iCloud

I have a relativley simple app which persists data to a plist file located in the documents folder. The data loads into a UITableView at startup. The user can then edit, delete or add records and any ...
2
votes
2answers
397 views

Apple iCloud implementation on Mac apps

I'm aware that iOS has API's to integrate iCloud for the apps. Can I integrate iCloud in mac apps as well? Will the implementation be different for Mac apps to integrate iCloud? If Yes, are there any ...
2
votes
2answers
177 views

Selecting “Enable Entitlements” for iCloud causes codesign error, even with correct distribution provisioning profile

I have updated and rebuilt my app with a new provision profile that was configured with "Enable for iCloud" checkbox selected in the provision portal. Next, in XCode, for the app project, I selected ...

1 2 3 4 5