PaulTaykalo / objc-dependency-visualizer

Objective-C and Swift dependency visualizer. It's tool that helps to visualize current state of your project. It's really easy to see how tight your classes are coupled.
MIT License
1.84k stars 99 forks source link

Allow to group classes by domains #13

Open PaulTaykalo opened 9 years ago

PaulTaykalo commented 9 years ago

Often we don't want' to see dependencies on the classes itself, but rather to check, if our abstractions are leaking or not.

For example in MVVM - View should not be pointing to Model, ViewModel should not know anything about View and Model should not know anything about ViewModel.

So there should be a way how to show it correctly )