I'm used to programming and having log messages be viewable. I know you used to be able to use NSLog() to trace out messages when debugging Cocoa apps. What is the best way to "trace" messages when coding in a iPhone XCode development environment?
|
17
|
|
||
|
|
|
|
NSLog :) The output is piped to the console window in XCode and the log files on the iPhone (which are viewable through the XCode device manager). |
||||||
|
|
|
I simply use the replace all functionality.... I disable all my NSLog statements by replacing NSLog(@" with //***NSLog(@" That way I can simply find it (using find in all project files) with //***NSLog(@" and re-enable them Nothing fancy but it works :) |
|||
|
|
|
There's a far more convenient way to trace with log messages in Xcode, and that's using Breakpoint Actions. On the line of code where you'd be tempted to add a printf or NSLog, set a breakpoint, then control-click it and choose "Edit Breakpoint". In the blue bubble that appears, click the + button on the right to open the Breakpoint Actions:
Enter your log text there. Any expression that can be printed in the Debugger can be used when delimited by @ signs. For debugging Objective-C it's generally more useful to choose "Debugger Command" from the popup and enter 'po [[object method] method]' to print the description string of an Objective-C object or the result of a method call. Make sure to click the "Continue" checkbox at the top right so execution continues after the log. Advantages of this over NSLog and printf:
Also check out the Speak button; it's great for debugging full-screen apps where you can't see the debug log. |
||||||||
|
|
|
In my project I have a customised solution based on DebugOutput.m This adds the file & line number to the debug output, making it easier to identify where that output text is coming from, while still keeping it brief. I've augmented the standard solution with a debug mask, so that I can switch debugging on and off for particular areas of functionality in my app. In Debug.h, I have
And in Debug.m
In the application, calls look something like this:
|
|||
|
|
