syncservices

Sync Services and iOS

梦想与她 提交于 2019-12-21 15:08:01
问题 Suppose I already have an OS X app which syncs its data using Sync Services with MobileMe. Is there an way to make my iPhone/iPad app to sync (using MobileMe or not) the data using what I already prepared for the Sync Services? I guess Apple already has the implementation inside iOS because iPhone/iPad does sync Safari bookmarks, but it doesn't seem to be available in the SDK... 回答1: Sync Services is not supported on iOS at the moment, so there is no way to access that synchronization data

Access to Safari bookmarks from another application

微笑、不失礼 提交于 2019-12-20 10:35:05
问题 I was wondering how we can access Safari bookmarks from another Cocoa application on Mac OS X, in a way that is safe and secure for the future. As you may know, two mechanisms were common to retreive Safari bookmarks: either read Safari's Bookmarks.plist file or use the SyncServices API. However, the first is forbidden by sandboxing (mandatory for a distribution through the App Store), and the second has been deprecated since Mac OS X 10.7 Lion. I believe that Apple deprecated SyncServices in

How to invoke ical sync service?

我是研究僧i 提交于 2019-12-14 03:56:59
问题 I have an application that syncs with iCal through the Calendar Store framework. I've noticed that I need to open iCal for the sync service to start and transfer events and tasks added with my application to my ipad and iphone. So.. my question, is there a way to start ical sync service without opening ical? Thank you, Jose. 回答1: I'm not positive that it will pick up the latest changes made to CalendarStore, but you should be able to trigger iCal's sync client by launching (NSWorkspace would

Access to Safari bookmarks from another application

耗尽温柔 提交于 2019-12-02 23:23:42
I was wondering how we can access Safari bookmarks from another Cocoa application on Mac OS X, in a way that is safe and secure for the future. As you may know, two mechanisms were common to retreive Safari bookmarks: either read Safari's Bookmarks.plist file or use the SyncServices API. However, the first is forbidden by sandboxing (mandatory for a distribution through the App Store), and the second has been deprecated since Mac OS X 10.7 Lion. I believe that Apple deprecated SyncServices in favour of iCloud synching, but I can't find any iCloud API that allow access to the bookmarks (1). Any