Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Sync iOS & Mac OS X data

Friends I am working on an app with two versions i.e. iOS & Mac OS X. Currently I am exploring my options to sync core data of iOS version to Mac OS X and vice versa.

Could someone suggest me regarding right tools/apis for the same. Or someone have some tips on how to do the same.

The only condition is we can't use cloud/webservice based syncing.

--- Update 01 ---

While working towards the solution, I explored towards syncing via HTTPServer inline/embeded in an app. http://cocoawithlove.com/2009/07/simple-extensible-http-server-in-cocoa.html

This allows iOS app to share data but via its IP. I am confused how an OS X app would be able to detect the IP or is there any iPhone connected with the Mac OS.

Just to clarify what I am exactly looking for is ---

User work on any one of the app iOS app OR Mac OSx app. Then user connect the iPhone with Mac machine and sync the data.

I hope someone would be able to guide me accordingly.

like image 475
Sarabjeet Singh Gaba Avatar asked Nov 13 '22 06:11

Sarabjeet Singh Gaba


1 Answers

I recommend to create a Status Menu Bar Application on Mac and sync your data with libimobiledevice.

The syncing itself is not so easy (if it's directly iOS<->Mac or not iOS<->Cloud<-Mac/iOS->). You might start here.

like image 62
Jonas Schnelli Avatar answered Dec 22 '22 23:12

Jonas Schnelli