home > [Objective-C] NSLog ログ書出し
[Objective-C] NSLog ログ書出し
January 07, 2013
文字列
NSLog(@"hoge");
配列
NSArray *array = [NSArrayarrayWithObjects:@"one", @"two", @"three", nil];
NSLog(@"%@", array);
%@ :Objective-Cのオブジェクト(NSStringとか)
%d :整数(intとか)
%f :浮動小数点(doubleとかfloatとか)
%.3fと指定することで桁数を指定できる
%s :言語の文字列(NULLターミネートされた文字列)
参考サイト
http://appteam.blog114.fc2.com/blog-entry-172.html