Xcode 警告信息处理:Format string is not a string literal (potentially insecure)

转自:http://www.oschina.net/question/54100_33881

NSObject *obj = @"A string or other object.";
NSLog([NSString stringWithFormat:@"%@",obj]);// 有警告
NSLog([NSString stringWithFormat:@"%@",obj],nil);// 解决方案
原文地址:https://www.cnblogs.com/wangpei/p/3517681.html