用于比较 Xcode 项目文件的工具

发布于 2024-12-01 13:33:38 字数 147 浏览 1 评论 0原文

我已获得 iOS 应用程序版本 1 和 2 的 Xcode 项目文件。版本 1 可以工作,版本 2 有更多功能但有问题。原来的程序员不再可用。没有使用版本控制系统。

有没有一个工具可以比较不同的项目 - 这样我就可以看到版本 1 和版本 1 之间添加了哪些代码2?

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?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

平定天下 2024-12-08 13:33:38

您可以使用 Xcode 提供的 FileMerge 工具来比较两个 Xcode 项目。

以下是 Xcode 6.1 中的比较步骤

  1. 右键单击​​ Xcode 图标 ->选择“打开开发者工具” ->选择'FileMerge'选项

Screenshot 0

  1. 这将打开如下所示的窗口:

Screenshot 1

  1. 通过单击左右按钮选择要比较的两个 Xcode 项目

  2. 单击“比较”按钮。这将创建添加、删除或更改的文件列表
    通过比较两个 Xcode 项目。

屏幕截图 2

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

风筝有风,海豚有海 2024-12-08 13:33:38

我非常确定 xcode 项目中的几乎所有内容都存储在文本文件中,因此您应该能够使用标准 diff 工具来比较项目。当然,这不包括图像、音频等资源。

FileMerge 是一个应用程序Apple 的开发者工具附带。它进行差异和合并。它可以通过终端运行 opendiff命令。

I'm pretty sure that nearly everything in an xcode project is stored in text files so you should be able to use standard diff tools to compare the projects. This, of course, excludes resources such as images, audio, etc.

FileMerge is an app that comes with Apple's Developer tools. It does diffs and merges. It can be run through the terminal with the the opendiff command.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文