views:

61

answers:

2

I am running my iPhone App on the simulator and looking for leaks using instruments. The problem is that the trace is not sensible. It does't show any of my code or label any of the system calls. It's all just numbers.

alt text

+1  A: 

You need to run a Debug build for the traces to be symbolicated.

Mike
+1  A: 

Which SDK are you targeting? If you build for 3.0, I believe the symbols don't get displayed. Switching to 3.1 got the symbols displaying for me.

Jablair