DebugLog Format字符串不是字符串文字

时间:2012-03-08 16:28:01

标签: iphone ios xcode debugging ios5

我的代码看起来像

DebugLog(urlStr);

urlStr是一个NSString 但我一直在警告说

Format string is not a string literal

我从网站上获得了这段代码。

#ifdef DEBUG
#define DebugLog(s, ...) NSLog(s, ##__VA_ARGS__)
#else
#define DebugLog(s, ...)
#endif

1 个答案:

答案 0 :(得分:3)

试试这个:DebugLog(@"%@", urlStr);