デバッグログ出力 - iOS開発メモ

サンプル

NSLogを使います。

NSString *str = @"文字列";
NSLog(@"str = %@", str); // str = 文字列

関連項目