Entries Tagged as ''

My Tweets on 2008-12-01

  • trying to learn how to develop iphone apps. what a pain in the ass! #
  • @t3chdzyn what game/guy? I just wanna make a bmod app =) #

NSLog format specifiers

Why? Cuz I’m trying to learn Objective-C, and I need this for quick reference =)

%@ Object
%d, %i signed int
%u unsigned int
%f float/double

%x, %X hexadecimal int
%o octal int
%zu size_t
%p pointer
%e float/double (in scientific notation)
%g float/double (as %f or %e, depending on value)
%s C string
%.*s Pascal string (requires two arguments, pass pstr[0] as the first, pstr+1 as the second)
%c character
%C unichar

%lld long long
%llu unsigned long long
%Lf long double

Trying to learn it so I can make an iPhone app.

Word!