IOS开发教程--NSLog输出格式控制
Posted wanglixin1999
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了IOS开发教程--NSLog输出格式控制相关的知识,希望对你有一定的参考价值。
%@ 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 (bytes)
%S C string (unichar)
%.*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
以上是关于IOS开发教程--NSLog输出格式控制的主要内容,如果未能解决你的问题,请参考以下文章