Is there something equivalent to this psuedocode below in Objective-C?
I want to see the binary equivalent of some data during runtime. Is it possible to do this without creating my own conversion method or function?
Code:
printf("My binary number: %bin", my32BitData);
I want to see the binary equivalent of some data during runtime. Is it possible to do this without creating my own conversion method or function?