`
3lll
  • 浏览: 67987 次
  • 性别: Icon_minigender_1
  • 来自: 合肥
社区版块
存档分类
最新评论

(转)Xcode 的警告warning 和 错误 error 的解决方法

阅读更多

转发,没有找到原文的出处。

1,警告:“xoxoxoxo”  is deprecated
解决办法:查看xoxoxoxo的这个方法的文档,替换掉这个方法即可。

2,警告:Declaration of "struct sockaddr" will not be visible outside of this function
解决办法:在你的开源.m文件中添加 #import <netinet/in.h>

3,警告:Implicit conversion from enumeration type 'UIInterfaceOrientation' to different enumeration type 'UIDeviceOrientation'
解决办法:类型不匹配。跳到出错的那一行,UIInterfaceOrientation强制转换为UIDeviceOrientation就行了。

4,警告:incompatible pointer types assigning to 'MyArrayList*'from 'NSMutableArray'
解决办法:加入强制转换(MyArrayList*)

5,警告:'&&' within '||'
问题出处:
    if (exists && !isDirectory || !exists)………
  解决办法: if ((exists && !isDirectory) || !exists)………

6,警告:Warning:The Copy Bundle Resources build phase contains this target's Info.plist file
解决办法:将Info.plist文件移到Resources目录下,而不要直接放在target下。

7,警告:在使用ASIHttp…第三方库的,运行报错。
解决办法:看你的项目中是否添加CFNetwork.framework、SystemConfiguration.framework, MobileCoreServices.framework,
CoreGraphics.framework和libz.1.2.3.dylib,如果是sdk5.0以上,改添加libz.1.2.5.dylib

 8,警告:xxxooo,missing required architecture i386 in file 
解决办法:如果是错误信息的话:
Target->Build Settings->Search Paths, 删除FrameworkSearch Paths 里面内容就可以了。
要只是一个警告的话,真机调试可以过。具体解决方法待大神出现。 

9,警告:
clang: error: no such file or directory: '/demo2/控件代码/13/Recorder/Recorder_Prefix.pch'
clang: error: no input files
Command /Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin/clang failed with exit code 1

解决办法: 在你的主工程文件 target搜素,pch ,找到Prefix Header    把它后面的值,都删除,再运行就解决了。

10,警告:
“ARC forbids synthesizing a property of an Objective-C object with unspecified ownership or storage attribute
解决办法:如果定义了ARC有效,那么必须要有所有者属性的定义;所以代码改成下面这样
@property (nonatomic, strong, readonly) NSString *ss; 

11,警告:
io6一下的xib系统均没有自动选择Use Autolayout, Supporting iOS 5 and below with xib of iOS 6 
解决办法:Just un-select “Use Autolayout” in the file inspector of the xib’s view and we are back to the familiar autosizing in size inspector and boom, it supports iOS 5 and below.

12,警告:
Warning: Multiple build commands for output file xxx.png 
解决办法:找到项目里xxx.png重复,删除重复的资源。

13,警告:
 “iOS 模拟器”未能安装此应用程序。
解决办法:删除模拟器上当前要运行那个APP,重新运行项目。就ok

14,警告:
SpringBoard无法启动应用程序 错误:-3
解决办法:退出模拟器,重新运行这个项目。

15,警告:
The server certificate failed to verify.   
解决办法:
1、打开终端(实用工具 -->终端),在终端中输入如下命令:
svn ls https://192.100.1.11?0/svn/xxxxxx(注意下面的url更换成你自己的url地址)
然后直接输入 “ p ”  确认,就可以重新连接了。

16,警告:
Bitmasking for introspection of Objective-C object pointers is strongly discouraged.   
解决办法:
某数字& 0x1的时候是代表要取最低位是否为1,改成了  if(JK_EXPECT_F(((NSUInteger)object)%2))即可。

17,警告:
Implicit conversion loses integer precision: 'unsigned long' to 'CC_LONG' (aka 'unsigned int').   
解决办法:
    CC_MD5(str,strlen(str), r);,改成了     CC_MD5(str, (CC_LONG)strlen(str), r);即可。

18,警告:
error: failed to launch '/private/var/mobile/Applications/xxxxx' -- failed to get the task for process 11140.  
解决办法:
    重启你的开发手机即可,还有一种可能是你的开发者证书与发布证书搞错了,检查在xcode中证书是否一直 。

19,警告:
error: ignoring filxxxxxx/libBaiduMobStat.a, missing required architecture x86_64 in filexxxx/libBaiduMobStat.a   
解决办法:
    targets ->build setting 下的  architectures 设置为 standard architetures(armv7,armv7s)   vaild architectures 设置为armv7,armv7s。

20,警告:
error: Directory not found for option '-L/Users/joryoubonxx/BaiduStatistic   
解决办法:
  删除  targets ->build setting 下的  library search path不正确的地址,如果还不行,重新添加第三库、clean ,重启Xcode.即可。

21,警告:
 warning: Semantic Issue: Incompatible integer to pointer conversion assigning to 'BOOL *' (aka 'signed char *') from 'BOOL' (aka 'signed char')
解决办法: 检查 BOOL *换为BOOL就可以了,检查是不是多写一个   *  号。

22:Jsonkit中的警告
Direct access to objective-c's isa is deprecated in favor of object_setClass() and object_getClass()
object->isa 替换为 object_getClass(object)
keyObject->isa 替换为 object_getClass(keyObject)
(id)keys[idx]->isa 替换为 object_getClass((id)keys[idx])
format specifies type 'unsigned long' but the argument has type 'nsuinteger' (aka 'unsigned int')
给变量增加(unsigned long)进行类型转换

23:md5加密(iOS SDK中自带了CommonCrypto)
Implicit declaration of function 'CC_MD5' is invalid in C99
[plain] view plaincopy
    #define CC_MD5_DIGEST_LENGTH 16  
    +(NSString *)MD5HashForString:(NSString *)input {  
        const char *cStr = [input UTF8String];  
        unsigned char result[CC_MD5_DIGEST_LENGTH];  
        CC_MD5(cStr, strlen(cStr), result);  
        return [NSString stringWithFormat: @"%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x",  
                result[0], result[1], result[2], result[3],  
                result[4], result[5], result[6], result[7],  
                result[8], result[9], result[10], result[11],  
                result[12], result[13], result[14], result[15]];  
    }  
引入函数定义的头文件
#import <CommonCrypto/CommonDigest.h>

24:ASIDataDecompressor中的警告
format specifies type  'short' but the  argument has type 'int'
在+ (NSError *)deflateErrorWithCode:(int)code 和 +(NSError *)inflateErrorWithCode:(int)code中
[NSString stringWithFormat:@"Compression of data failed with code %hi",code] 中
将code改为 (short)code,类型转换

25:Reachability中警告
Using 'stringWithString:' with a literal is redundant
statusString = [NSString stringWithString: @"Not Reachable"]; 
改为:statusString = @"Not Reachable";

26 format specifies type 'id' but the argument has type 'const char *'
NSCAssert(NO, @"Unhandled error encountered during SAX parse. msg is %@", msg);
改为:NSCAssert(NO, @"Unhandled error encountered during SAX parse. msg is %@", [NSString stringWithUTF8String:msg]);

27 Using 'stringWithString:' with a literal is redundant
改为:self.locationInput.text = @"captured change";

28 在项目中设置控件的layer属性时,会发生错误,
"Property 'c' cannot be found in forward class object 'CALayer *",
这时需要引入  #import <QuartzCore/CALayer.h>。

29 在项目中变量未初始化会报警告,
"Variable 'type' may be uninitialized when used here",
这时需要初始化相应的变量即可  。

 

30, 错误信息:
  "_OBJC_CLASS_$  xxxxx  ", referenced from:
      objc-class-ref in ViewController.o
ld: symbol(s) not found for architecture i386
clang: error: linker command failed with exit code 1 (use -v to see invocation)
解决方法:
 查看工程,看是不是没有导入相关的框架。或者工程里添加的有相同".m",".h" 文件

31,  错误信息:
Couldn't register dy.CKRiLiText with the bootstrap server. Error: unknown error code.
This generally means that another instance of this process was already running or is hung in the debugger.Current language:  auto; currently objective-c
解决方法: 可能是电脑内存问题引起,重启电脑即可解决。如果重启解决不了问题,那就是你刚刚改动的代码引起的问题。

32 、 错误信息:
ios 5是调试正常,ios 6真机调试的时候,出现如下错误:ld: file is universal (3 slices) but does not contain a(n) armv7s slice: /Users/mac4/Desktop/my desktop/My app/MyApp name 20:09:12  /MyApp name/ZBarSDK/libzbar.a for architecture armv7serror: linker command failed with exit code 1 (use -v to see invocation)
解决方法:在Xcode里,点击相应的Target,然后点Build Settings,找到VALID_ARCHS,看里面的是不是arvm7s,如果不是改成arvm7s就可以了。

33、 错误信息:
 error: receiver type 'ViewController' for instance message does not declare a method with selector 'hideSearchBar:' [4]
ViewController 中没有声明一个方法选择'hideSearchBar:
解决方法:
在ViewController .h 中声明一下这个方法 “ hideSearchBar ”  即可。

34、 错误信息:当json从服务端请求时得到的字符串,如果这样写的话,会报错,';' after top level declarator
NSString *ss= @"{"recommend":"世界末日","dogname":"机器人"}";  
解决方法:
就是,把   “   替换成  \"  即可。NSString *ss= @"{ \"recommend \": \"世界末日 \", \"dogname \": \"机器人 \"}";  

35、 错误信息:
 error: Existing instance variable '_datasource' for property 'datasource' with  assign attribute must be __unsafe_unretained
解决方法:
     id<ListViewDataSource> _datasource; 改为     __unsafe_unretained id<ListViewDataSource> _datasource:即可

36、 错误信息:
error: No architectures to compile for (ONLY_ACTIVE_ARCH=YES, active arch=x86_64, VALID_ARCHS=i386).
解决方法:
     targets ->build setting 下的 Build Active Architecture Only 设置 NO  即可.

37、 错误信息:
error: failed to launch"/private/var/mobile/Applications/XX"-- timed out waiting for app to launch  .
解决方法:
     targets ->build setting 下的 把证书选择为 对应正确的开发证书  即可.

 

38,错误
Error launching remote program: failed to get the task for process  
解决方法:
把真机上的软件,删除,然后,clean 一下,重新运行就可以了。
       
39,真机调试的时候,出现   ios Broken pipe
解决方法:
:推出xcode
:断开机器(iphone,ipad,ipod)链接
:重启iPhone在联接xcode,就可以了。

 

40 提示(null) error: could not read CFBundleIdentifier from Info.plist (null)

 

新建一个同名工程,拷贝其plist文件,将原工程中的plist文件替换掉即可。

 

分享到:
评论

相关推荐

    xcode 快捷键 一页

    - **Previous error/warning (上一个错误/警告)**:在构建结果中跳转到上一个错误或警告。 - **Open console (打开控制台)**:显示输出日志等信息。 - **Clear console (清空控制台)**:清除控制台中的所有信息。 #...

    iOS编译时出现的错误和解决办法

    ### iOS编译时出现的错误及解决办法 #### 一、`std::ios_base::Init::~Init()` 引用问题 在iOS开发过程中,如果遇到类似`std::ios_base::Init::~Init()`这样的编译错误,通常是由于缺少必要的库文件所导致的。这种...

    danger-xcode_summary:一个Danger插件,显示从xcodebuild生成的所有构建错误,警告和单元测试结果

    危险-xcode_summary 一个插件,显示从xcodebuild生成的所有构建错误,警告和单元测试结果。 您需要将与一起使用,以生成此插件可以读取的JSON文件。 使用? 您可能需要看一下 。看起来如何? 1个错误 :prohibited: ...

    Unity 在安卓IOS等移动设备环境下的log查看解决方案

    首先,Unity引擎在运行时会产生各种日志信息,包括警告(Warning)、错误(Error)和调试信息(Debug)。这些信息可以帮助开发者了解代码执行的状态,识别潜在问题。在桌面环境下,Unity编辑器内可以直接查看这些...

    Unity移动端打印输出信息

    首先,Unity提供了内置的日志系统,主要通过`Debug.Log`,`Debug.LogWarning`和`Debug.LogError`三个方法来实现。这些方法分别用于输出普通信息、警告信息和错误信息。例如: ```csharp using UnityEngine; public...

    RegexKitLite-NoWarning:它是从官方 subversion (RegexKitLite-4.0) 克隆而来的

    在 RegexKitLite-NoWarning 版本中,开发人员对源代码进行了调整,以解决在某些编译环境中可能出现的警告,这通常是为了保持项目的清洁度和可维护性。消除警告有助于确保代码的质量,并减少潜在的错误来源。对于...

    iConsole官方demo

    2. **日志输出**:iConsole支持多种级别的日志输出,包括错误(Error)、警告(Warning)、信息(Info)和调试(Debug)。开发者可以在代码中调用相应的API来打印不同级别的日志,这些日志随后会在iConsole的界面中...

    swift-ShowLog将log打印显示在自定义的view中

    在Swift编程中,日志(Log)是一种非常重要的调试工具,它可以帮助开发者追踪代码执行的过程,定位和解决问题。本文将详细讲解如何使用`ShowLog`这个库,将日志信息实时地显示在自定义的视图(View)中,以提供更...

    一个小型日志控制台

    - 自定义级别:允许设置不同的日志级别,例如DEBUG、INFO、WARNING和ERROR,方便过滤和查看不同严重程度的问题。 - 颜色编码:通过颜色区分不同级别的日志,使得识别和处理问题更加直观。 - 清除日志:提供清除当前...

    Swift 通用提示

    - 警告(Warning):黄色背景,用于提醒用户可能存在的问题。 - 提示(Info):蓝色背景,用于提供一般性的信息。 4. **位置与动画** 默认情况下,GSMessages会在屏幕底部显示消息。如果你想让它在顶部显示,...

Global site tag (gtag.js) - Google Analytics