Are there any Call-Graph and/or Control-Flow-Graph generators for Objective-C for iOS apps?
Call Graph - http://en.wikipedia.org/wiki/Call_graph Call Graphs gives an inter-procedural view of a program. In a call graph, an edge between two nodes f and g: f --> g represents the fact that subroutine f calls subroutine g.
Control Flow Graph - http://en.wikipedia.org/wiki/Control_flow_graph
Some static tool that let me access the graph using some API/code? Is there any way to generate call graphs for iOS apps? or even to record the names of all methods invoked by an iPhone application for any user interaction event.