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

Format string is not a string literal (potentially insecure)

时间:2014-06-07 06:52:53      阅读:263      评论:0      收藏:0      [点我收藏+]

标签:c   class   blog   code   a   http   

Warning:  Format string is not a string literal (potentially insecure)

 

[objc] view plaincopybubuko.com,布布扣bubuko.com,布布扣
 
  1. NSString * str = nil;  
  2.   
  3. str = [NSString stringWithFormat:@"---%d---", 18] ;  
  4.   
  5. NSLog(str);  

 

解决1:

 

[objc] view plaincopybubuko.com,布布扣bubuko.com,布布扣
 
  1. NSLog(str,nil);  


解决2:

 

[objc] view plaincopybubuko.com,布布扣bubuko.com,布布扣
 
    1. NSLog(@"%@", str);  

Format string is not a string literal (potentially insecure),布布扣,bubuko.com

Format string is not a string literal (potentially insecure)

标签:c   class   blog   code   a   http   

原文地址:http://www.cnblogs.com/clumsy1006/p/3770687.html

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