Xcode C ++ Debugging

I'm looking for a way for the Xcode IDE to pick up the contents of my weird Boost template classes. In principle, classes are complex enough so that Xcode cannot correctly display their contents.

Is there something like Objective-C -description or toString () method in Java that Xcode will look for?

Right now, I'm just applying the print () methods and calling them in gdb, but that might confuse other developers.

+7
source share
1 answer

You can try custom Data Formatters for your types, and the Xcode debugger will use them.

+1
source

All Articles