Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
NSLog(@"例");
出力します:
2012-09-13 04:54:48.128 MyApp[94652:a0f]: 例
コンソールで。
出力のみにする方法はありますか:
例
このマクロを定義してNSLogの代わりに使用すると、指定したものだけが出力されます。
#define NSLog(FORMAT, ...) printf("%s\n", [[NSString stringWithFormat:FORMAT, ##__VA_ARGS__] UTF8String]);