I recently bought a MacBook Pro that I will use to develop an iPhone app. I want to be able to transfer the Xcode project between my Macbook and my iMac in the same manner that Word documents can be transferred using iCloud. Is there a secure way this can be done?
|
|
I'm using dropbox to sync my xcode projects across 2 macs. I had no issues so far but I would recommend not to work on a project simultaneously, so make sure to close it on one machine before you open it on another. |
|||
|
|
|
iCloud might sound good idea for syncing Xcode proejcts, but actually it leads into problems. You should use GIT instead. I reccomend to use bitbucket, wich is for free. You can host there private or public projects. When you have done editing your code in one machine, you shall commit and then pull your changes into remote repository. When yu are opening your project in another comp, you have to fetch it from remote repository. By using Giy, you can share your code easily with other team members too. See more here: Save Project Changes |
|||
|