Objective-C 的类可视化工具?
有谁知道 Objective-C 的静态类/代码浏览器/可视化工具吗?有什么可以帮助熟悉大型代码库的吗?
谢谢!
Does anyone know of any static class/code explorer/visualisation tools for Objective-C? Something to help become familiar with large code-bases?
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
看一下 OmniGraffle
您可以将 Xcode 项目文件拖放到上面,它会为您创建一个类图。
Have a look at OmniGraffle
You can drop an Xcode project file onto it and it will create a class diagram for you.
我遇到的几个选项:
Scitools:https://scitools.com/index.php< /a>
优点:很多功能和一些有趣的插件
缺点:1000 美元(15 天免费试用)
Graphviz(类似于 OmniGraffle 但免费)和 NST 的 objc_dep 项目(将 Objective-C 文件转换为 Graphviz 可读文件)的组合:http://www.graphviz.org/Download_macos.php 和 https://github .com/nst/objc_dep
优点:免费
缺点:功能不多
Few of options I've come across:
Scitools: https://scitools.com/index.php
Pros: Lots of features and some interesting plugins
Cons: $1000 (15 day free trial)
Combination of Graphviz (similar to OmniGraffle but free) and NST's objc_dep project (converts objective-c files into Graphviz readable file): http://www.graphviz.org/Download_macos.php and https://github.com/nst/objc_dep
Pros: Free
Cons: Not so many features
Xcode 3 和 4 在这方面的功能有所不同。
doxygen 提供了一些很酷的高级功能(交互式浏览、图形)。它也适用于其他语言。可能是最有特色/最详细的,但没有像 ide 那样与源集成。
最后,查看 JetBrains 的 AppCode。尽管作为 objc 的 ide 仍处于起步阶段,但他们为 Java 所做的一切都是伟大的。
Xcode 3 and 4 differ feature-wise in this regard.
doxygen offers some cool advanced features (interactive browsing, graphs). it also works well with other languages. probably the most featured/detailed, but not integrated with the sources like an ide.
lastly, check out JetBrains' AppCode. although it's still in it's infancy as an ide for objc, what they have done for Java has been great.