I want to make a UML diagram for my xcode project automatically. Is there a tool out there that can do that for me? I’ve only found things like Omnigraffe.
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Doxygen is able to generate some class diagrams using dot and graphviz. Here is a sample project using it. But, to make it work you need MacPorts to
port install doxygen dotand then edit the Doxygen text config file (included on that project) and setHAVE_DOT = YESandUML_LOOK = YES.It’s not complete and it’s not much, but doxygen is the lesser of two evils. I wish someone knows a better option or a better tool appears.