本文转载至 http://blog.csdn.net/shijiucdy/article/details/8755667

处理警告:

1,Validate Project Settings(update to recommended settings)

A:

2,'xxxxxxx' is deprecated:first deprecated in ios 5.0
    A:ios系统版本不支持xxxxxxx方法

3,Incomplete implemention

A:.m文件未实现代理方法或.h中声明的方法

一:

1:directory not found for option '-F/Applications/Xcode.app/Contents/Developer/Library/Frameworks'

A: project (targets)--> Build Settings--> Library Search Paths--> 删除填写的路径

2:property's synthesized getter follows Cocoa naming convention for returning 'owned' objects

A:不能使用“new” "copy"开始的属性名称

3:char *name[3]={"a","b","c"}; Conversion from string Literal to 'char*' is deprecated

A:修改成const char *name[3]={"a","b","c"};

4:Implicit declaration of function 'sysctlbyname' is invalid in C99

A:project (targets)--> Build Settings-->C Language Dialect--->GNU89[-std=gnu89]

5  :  warning:no rule to process file "xxxxxxxxx" of type sourcecode.c.h for architecture i386

A: project (targets)-->Build Phases-->Compile Sources--把 .h 文件删掉

6 :RegexKitLite.m警告

 [[NSAssertionHandler currentHandler] handleFailureInFunction:functionString file:fileString lineNumber:(NSInteger)[lineNumber longValue] description:descriptionString];

A :  [[NSAssertionHandler currentHandler] handleFailureInFunction:functionString file:fileString lineNumber:(NSInteger)[lineNumber longValue]description:@"%@",descriptionString];

7 : warning: unexpected dylib (.........) on link line

A: project (targets)-->Build Phases-->Link Binary With Libraries--把警告的类库删掉

最新文章

  1. Silverlight 手鼓达人-仿太鼓达人 开源
  2. MongoDB-3.2.6 副本集 和主从
  3. C++ 优先队列
  4. CCF-出现次数最多的数
  5. 干货,一文带你超详细了解Session的原理及应用
  6. .Net Core3 新特性/新功能 16条
  7. Linux之命令进阶
  8. VS2017设置主题和代码字体
  9. ActiveMQ使用
  10. css学习_css三大特性
  11. webpack打包配置模板
  12. golang 本地构建包
  13. Android开发之使用DefaultHandler处理XML数据
  14. Error while adding new interface: failed to open /dev/vboxnetctl: No such file or directory
  15. Linux下tomcat无法启动
  16. Swift与OC的相互调用
  17. java 基础--继承--007
  18. Android中的异常情况
  19. 1.Spark Streaming另类实验与 Spark Streaming本质解析
  20. kibana安装汉化包

热门文章

  1. Leetcode 335.路径交叉
  2. POJ-2078 Matrix,暴力枚举!
  3. 【Luogu】P2220容易题(快速幂)
  4. 【kmp+求所有公共前后缀长度】poj 2752 Seek the Name, Seek the Fame
  5. Spring JdbcTemplate 查询方法中的RowMapper实现汇总
  6. java system.out.printf()的使用方法
  7. chef cookbook 实战
  8. 【2017YYHS WC】
  9. Perl语言入门--2--变量与字符串
  10. objective-c中#import和@class的区别