Search code examples
objective-cios7xcode5

Xcode debugger doesn't print object also not showing any error message


I am using Xcode 5.1.1, my debugger accept object when i try to print them but doesn't print details of it. Also it is not showing any error message.

I have checked all answer listed for one similar question here but didn't found any of such error in my xcode setting.

Accepting object

After adding an exception breakpoint

Can some one please tell me where else i need to check?


Solution

  • After checking all the buttons in debugger window, found there is button at bottom (default selected "All Output") which popup drop-down when we click on it.

    This was set to 'Target Output' which causing the problem. Select option either 'All Output' or 'Debugger Output', then we can get values of variable/object when we say po variable/object.

    Solution