XCode 4 优化

发布于 2024-11-09 09:21:23 字数 286 浏览 0 评论 0原文

按照https://stackoverflow.com/questions/8440/visual-studio-optimizations的脉络问题,我很想收集一些提示和技巧,以使 XCode4 在日常使用中运行得更快。

特别是,我对禁用烦人的 UI 动画、缩短构建时间以及更快地将应用程序置于调试器下的方法感兴趣。减少 XCode 内存占用以及缩短启动时间的技巧值得赞赏。

In the vein of the https://stackoverflow.com/questions/8440/visual-studio-optimizations Question, I would love to collect tips and tricks to make XCode4 go faster in day to day use.

Especially, I'm interested in ways to disable annoying UI animations, improve build times and getting apps under the debugger faster. Tips that reduce XCode's memory footprint as well as improve startup times are appreciated.

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

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

发布评论

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

评论(2

陌路终见情 2024-11-16 09:21:23

此处可以找到一系列小型 XCode 插件,它们允许许多XCode 的更烦人(并且常常分散注意力)的功能需要被禁用(包括您提到的“烦人的 UI 动画”)。

有关插件和安装过程的详细说明可以在此处。

There are a collection of tiny XCode plugins that can be found here, which allow for many of XCode's more annoying (and often distracting) features to be disabled (including the "annoying UI animations" you mentioned).

Detailed instructions for the plugins and installation process can be found here.

橪书 2024-11-16 09:21:23
  1. 禁用索引(这将大大减少 XCode 使用的 RAM 和 CPU 量)

    $ defaults write com.apple.dt.XCode IDEIndexDisable 1

  2. 降低 XCode 的优先级(这将允许您在构建时做其他事情)

    $ renice 10 -p PID (其中 PID 是 XCode 的进程 ID )

  3. <一href="https://stackoverflow.com/questions/5533799/build-slow-on-xcode4-because-of-check-dependency">避免对每个构建进行依赖项检查(这将使构建速度更快)< /p>

  1. Disable indexing (this will considerably reduce the amount of ram and CPU XCode uses)

    $ defaults write com.apple.dt.XCode IDEIndexDisable 1

  2. Reduce XCode's priority (this will allow you to do other things while building)

    $ renice 10 -p PID (Where PID is XCode's Process ID )

  3. Avoid dependency checks on every build (this will make builds faster)

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