码迷,mamicode.com
首页 > 其他好文 > 详细

解决编译时出现的警告:format string is not a string literal (potentially insecure)

时间:2016-06-21 23:59:25      阅读:2919      评论:0      收藏:0      [点我收藏+]

标签:

 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)

标签:

原文地址:http://www.cnblogs.com/liuting-1204/p/5605402.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!