我的代码看起来像
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
答案 0 :(得分:3)
试试这个:DebugLog(@"%@", urlStr);