Thursday, July 23, 2009

Logging

Code to write application log in iPhone SDK / Cocoa using XCode :

NSLOG(@"log : %i", myIntVariable); //Log values of Integer variables
NSLOG(@"log : %f", myFloatVariable); //Log values of Float variables
NSLOG(@"log : %@", myStringVariable);//Log values of String variables

In XCode logging values can be viewed from Console window; it is availbale in XCode @ RUN --> CONSOLE.

--Mitesh Mehta
miteshvmehta@gmail.com

No comments:

Post a Comment