icloud

iPhone and Webapp sync through iCloud ??

穿精又带淫゛_ 提交于 2019-12-03 12:43:18
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 web app component. iCloud would be great to use as the module to sync everything together. Anyone know if it's possible ? I have a similar requirement and have wondered about this too. Unfortunately iCloud data doesn't seem to be accessible to a Web app. And if you found a hack around it, it would still be an unreliable solution as Apple could always make changes down the road that break your Web

Syncing Core Data across multiple devices using iCloud

孤街浪徒 提交于 2019-12-03 12:37:49
There has been a lot of discussion lately about the issues with iCloud and Core Data and how Apple's APIs are currently broken in iOS 5 and possibly iOS 6. Is it possible, given the current state of Apple's Core Data API, to reliably sync across multiple devices using iCloud? If so, how would you do this? If not, please recommend an alternative approach. It depends on what you want to do. There are two types of Core Data-iCloud integration, as described here: http://developer.apple.com/library/ios/#releasenotes/DataManagement/RN-iCloudCoreData/_index.html There are broadly speaking two types

Alternatives to iCloud + Core Data to sync data between iOS and OS X

北城以北 提交于 2019-12-03 12:10:58
问题 I'm developing an application for iOS/OS X and i want to sync data between them. for now I use Core Data for persistent data. I read that iCloud is not enough mature to use with core data. Is that true ? so i try to use the new DropBox sync API(to sync the SQLite file), but there's no support for OS X. Is Parse SDK a good idea? (it will also allow me to add Android support) If no, have you other solution? Thank you. 回答1: i read that icloud is not enough mature to use with core data. is that

Sharing iCloud data between two apps

房东的猫 提交于 2019-12-03 12:03:21
I'm wanted find more information regarding this. I intend to make an app right now with iCloud core data store. And i wish to share that with another app (different bundle Identifier) is it possible? Obviously, i shall include the iCloud capabilities in another app as well ,but with the AppIDs and all, it seems questionable. Another question if I may, I am planning to use iCloud sync for CoreData and a plist File. From what I know, usually apps take one of the approach, but I needed to sync core data as it is intended, and use a small plist file, which isn't a settings file. Is this a bad way

How does Sunrise for iOS use iCloud credentials to access our calendar?

◇◆丶佛笑我妖孽 提交于 2019-12-03 11:13:35
问题 Sunrise on iOS is calendar that, with version 2, added support for iCloud calendars. From this page, the team at Sunrise say this: When you type in your iCloud credentials, they are sent to our server only once in a secured way over SSL. [...] We use them to generate a secure token from Apple. This secure token is the only thing we store on our servers, we never store your actual iCloud credentials. And recently: Since our 2.11 version, we are not sending iCloud credentials to our servers,

Can Git and iCloud Drive be effectively used together?

主宰稳场 提交于 2019-12-03 11:06:21
In the same flavor as this question , are there any possible complications that can arise when using the two services together? I'd be concerned about the upcoming macOS Sierra's new Optimised storage feature, where not all files in iCloud Drive are stored locally and may instead be requested on-demand. From my tests, it appears git doesn't trigger the OS to request the file, and instead picks up the placeholder file, named something like .original_filename.icloud . No, they shouldn’t be used together. Apple says “You shouldn’t store app folders, libraries, or .tmp files in iCloud Drive.” .git

Apple iCloud calendar API [closed]

只谈情不闲聊 提交于 2019-12-03 09:56:52
I've been trying to find out of its possible to access Apple's iCloud calendar from a web application. Does it support CalDAV or any sort of web API? I can't seem to find a clear answer for this. iCloud uses CalDAV. A quick Google search returns this hint for determining server URL info for use with iCal on Mac OS 10.6 -- but once you have that info you should be able to use it with any CalDAV client. 来源: https://stackoverflow.com/questions/9751255/apple-icloud-calendar-api

How to initialise UIDocumentPickerViewController with all type of UTIs

拥有回忆 提交于 2019-12-03 09:05:01
问题 I want to open UIDocumentPickerViewController and It should allow user to select all type of files. I tried to mention all UTIs in UIDocumentPickerViewController init method still couldnt find valid UTIs for some of files like rar,Visio files,mpp,mpt UIDocumentPickerViewController *documentPicker = [[UIDocumentPickerViewController alloc] initWithDocumentTypes:[MingleUtils allowedUTIs] inMode:UIDocumentPickerModeImport]; and +(NSArray*)allowedUTIs{ return @[@"public.data",@"public.content",@

Issues with Ubiquity container, Entitlements, and code signing not playing nice with each other

喜夏-厌秋 提交于 2019-12-03 08:59:34
I am working on adding iCloud support to my income tracking app myIncome that is in the Mac App Store as a 1.0 release currently and works as it should in the 1.0 version. I have only added code to get the ubiquity container and upload the selected file to iCloud. Currently I am using a block to to see if iCloud is even available to validate the menu item that sends the file. if ([[NSFileManager defaultManager] URLForUbiquityContainerIdentifier: container] == nil) return NO; return YES; I have added the keys to the entitlements file and have a development provisioning profile for the app with

Copying contacts from one source to another

旧街凉风 提交于 2019-12-03 08:59:30
I'm trying to copy contacts between my Local contact source and the iCloud contact source and I'm not seeing any results. This code executes without error and seems like it should work, but I don't see the newly created contacts afterward. Anyone see any issues with it? ABAddressBookRef addressBook = ABAddressBookCreate(); ABRecordRef abSourceSource = ABAddressBookGetSourceWithRecordID(addressBook, kABSourceTypeLocal); ABRecordRef abDestinationSource = ABAddressBookGetSourceWithRecordID(addressBook, kABSourceTypeCardDAV); CFArrayRef sourceContacts = ABAddressBookCopyArrayOfAllPeopleInSource