標籤:des style blog http io os ar 使用 for
本文轉載至 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--把警告的類庫刪掉
IOS------Warning