Calvin Cheng
Calvin Cheng

Reputation: 36556

Visualizing my code in Xcode 4

How do I visualize the class hierarchies I have written for my Xcode iPhone app project using Xcode 4? Is there a visual class browsing tool?

Upvotes: 1

Views: 1271

Answers (3)

marxy
marxy

Reputation: 416

Omnigraffle can open an xcode project and do a pretty good job of drawing a class diagram.

Upvotes: 2

odrm
odrm

Reputation: 5259

Class browsing is built into XCode 4:

  1. Open your project
  2. In the top left corner of the left pane, click the icon that looks like a fat rectangle with two little squares dangling below:

Class Browsing XCode 4

Upvotes: 4

Ole Begemann
Ole Begemann

Reputation: 135578

Open the Symbol Navigator (Cmd+2. With the filter buttons in the bottom bar of the Symbol Navigator you can choose whether you want to browse the entire class hierarchy or just your project's classes.

Upvotes: 1

Related Questions