Quote:
Originally Posted by dcwhat
Originally Posted by dcwhat
I think u answered my questions, I have a varible set as "time" and to display, display a varible you have to NSLog(@"%x",Any varible Name); right?
Also if u do something like this would it work
Int testCounter = 0;
testCounter++; <- this would increase by 1 right?
|
NSLog(@"%x",Any varible Name); // Not sure about %x for any variable.
%@ for Object such as NSArray, NSString and so on
%i for integer
%d for float
int testCounter;
testCounter = 0;
testCounter++; <= NSLog(@"%i", testCounter); // that will give 1