0

I'm trying to profile my code and use Instruments (iOS->CPU->Time Profiler) for it. I choose application and run the test. In Call Tree options I select 'Show Obj-C Only' check box but I don't see my application calls, just system/sdk libraries internal calls. The program built in debug mode.

How can I see my application's call?

user478681
  • 8,330
  • 4
  • 26
  • 34
  • This helps: http://stackoverflow.com/questions/2776466/missing-symbol-names-when-profiling-iphone-application-with-instruments – user478681 Aug 18 '11 at 20:45

1 Answers1

4

you are profiling with the release configuration, but that one does not have hte debug symbols. Edit the target scheme and pick the debug

CocoaChris
  • 508
  • 3
  • 7