解决编译时出现的警告:format string is not a string literal (potentially insecure)
Posted 柳仙慧子
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了解决编译时出现的警告:format string is not a string literal (potentially insecure)相关的知识,希望对你有一定的参考价值。
NSLog([NSString stringWithFormat:@"%@/%@B.jpg", createDir, uuid]);//这是我的写法
应该写成
NSString *str = [NSString stringWithFormat:@"%@/%@B.jpg", createDir, uuid];
NSLog(@"%@",str);
以上是关于解决编译时出现的警告:format string is not a string literal (potentially insecure)的主要内容,如果未能解决你的问题,请参考以下文章
解决 Maven项目进行编译( mvn compile )时出现的错误
VS2008 编译时出现的错误:无法打开编译器中间文件。如何解决?
编写Spark的UDF函数解决Hive表大数bigintdoublefloatdecimal等转字符串string时出现的科学计数法问题Java
编写Spark的UDF函数解决Hive表大数bigintdoublefloatdecimal等转字符串string时出现的科学计数法问题Java