Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Tool for comparing Xcode project files

I've been given the Xcode project files for version 1 and 2 of a iOS app. Version 1 is working, version 2 is buggy with more features. The original programmer is no longer available. No versioning system was used.

Is there a tool to compare the different projects - so I can see what code was added between version 1 & 2?

like image 782
cannyboy Avatar asked Aug 24 '11 13:08

cannyboy


1 Answers

You can compare two Xcode project using FileMerge tool available with Xcode.

Below are steps for comparison in Xcode 6.1

  1. Right click on Xcode icon -> Select 'Open Developer Tool' -> Select 'FileMerge' option

Screenshot 0

  1. This will open window as show below :

Screenshot 1

  1. Select two Xcode project which is to be compared by clicking Left and Right button

  2. Click on 'Compare' button. This will create list of file that are added, removed or altered by comparing two Xcode project.

Screenshot 2

like image 76
Jayprakash Dubey Avatar answered Oct 21 '22 07:10

Jayprakash Dubey