美文网首页
常见错误与警告

常见错误与警告

作者: 昵什么称 | 来源:发表于2016-12-07 18:11 被阅读0次

部分常见警告与错误的解决方法与思路,具体问题具体分析解决。

一、常见警告如下:

1.警告:“xoxoxoxo”is deprecated

解决办法:查看xoxoxoxo的这个方法的文档,替换掉这个方法即可。

2.警告:Warning:The Copy Bundle Resources build phase contains this target"s Info.plist file

解决办法:将Info.plist文件移到Resources目录下,而不要直接放在target下。

3.警告:在使用ASIHttp…第三方库的,运行报错。

解决办法:看你的项目中是否添加CFNetwork.framework、SystemConfiguration.framework, MobileCoreServices.framework,

CoreGraphics.framework和libz.1.2.3.dylib,如果是sdk5.0以上,改添加libz.1.2.5.dylib

4.警告:xxxooo,missing required architecture i386 in file

解决办法:如果是错误信息的话:Target->Build Settings->Search Paths, 删除FrameworkSearch Paths 里面内容就可以了。要只是一个警告的话,真机调试可以过。

5.警告:

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    把它后面的值,都删除,再运行就解决了。

6.警告:

“ARC forbids synthesizing a property of anObjective-Cobject with unspecified ownership or storage attribute

解决办法:如果定义了ARC有效,那么必须要有所有者属性的定义;所以代码改成下面这样

@property (nonatomic, strong, readonly) NSString *ss;

7.警告:

Warning: Multiple build commands for output file xxx.png

解决办法:找到项目里xxx.png重复,删除重复的资源。

8.警告:

“iOS 模拟器”未能安装此应用程序。

解决办法:删除模拟器上当前要运行那个APP,重新运行项目。就ok

9.警告:

SpringBoard无法启动应用程序 错误:-3

解决办法:退出模拟器,重新运行这个项目。

10.警告:

The server certificate failed to verify.

解决办法:

打开终端(实用工具 -->终端),在终端中输入如下命令:

svn ls https://192.100.1.11?0/svn/xxxxxx(注意下面的url更换成你自己的url地址)

然后直接输入“p”确认,就可以重新连接了。

11.警告:

error: failed to launch "/private/var/mobile/Applications/xxxxx" -- failed to get the task for process 11140.

解决办法:

重启你的开发手机即可,还有一种可能是你的开发者证书与发布证书搞错了,检查在xcode中证书是否一致 。

12.警告:

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。

13.警告:

error: Directory not found for option "-L/Users/joryoubonxx/BaiduStatistic

解决办法:

删除  targets ->build setting 下的  library search path不正确的地址,如果还不行,重新添加第三库、clean ,重启Xcode.即可。

14.警告:

error: The executable was signed with invalid entitlements.

解决办法:

重新导入最新的证书即可

15.警告:

warning: Semantic Issue: Incompatible integer to pointer conversion assigning to "BOOL *" (aka "signed char *") from "BOOL" (aka "signed char")

解决办法: 检查 BOOL *换为BOOL就可以了,检查是不是多写一个   *  号。

二、常见错误如下:

1,  错误信息:

"_OBJC_CLASS_$  xxxxx  ", referenced from:      objc-class-ref in ViewController.old: symbol(s) not found for architecture i386clang: error: linker command failed with exit code 1 (use -v to see invocation)

解决方法: 查看工程,看是不是没有导入相关的框架。或者工程里添加的有相同".m",".h" 文件

2、错误信息:

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

解决方法: 可能是电脑内存问题引起,重启电脑即可解决。如果重启解决不了问题,那就是你刚刚改动的代码引起的问题。

3、错误信息:

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就可以了。

4、错误信息:

error: receiver type "ViewController" for instance message does not declare a method with selector "hideSearchBar:" [4]

ViewController 中没有声明一个方法选择"hideSearchBar:

解决方法:在ViewController .h 中声明一下这个方法 “ hideSearchBar ”  即可。

5、错误信息:当json从服务端请求时得到的字符串,如果这样写的话,会报错,";" after top level declarator

NSString *ss= @"{"recommend":"世界末日","dogname":"机器人"}";  解决方法:

就是,把   “   替换成  \"  即可。NSString *ss= @"{ \"recommend \": \"世界末日 \", \"dogname \": \"机器人 \"}";

6、错误信息:

error: Existing instance variable "_datasource" for property "datasource" with  assign attribute must be __unsafe_unretained

解决方法:     id _datasource; 改为     __unsafe_unretained id _datasource:即可

7、错误信息:

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  即可.

8、错误信息:

error: failed to launch"/private/var/mobile/Applications/XX"-- timed out waiting for app to launch  .

解决方法:     targets ->build setting 下的 把证书选择为 对应正确的开发证书  即可.

9、在项目中设置控件的layer属性时,会发生错误,"Property "c" cannot be found in forward class object "CALayer *",

这时需要引入  #import 。

10、在项目中变量未初始化会报警告,"Variable "type" may be uninitialized when used here",

这时需要初始化相应的变量即可  。

11、错误信息:

Error launching remote program: failed to get the task for process

解决方法:

把真机上的软件,删除,然后,clean 一下,重新运行就可以了。

12 、真机调试的时候,出现   ios Broken pipe

解决方法:

a:推出xcode

b:断开机器(iphone,ipad,ipod)链接

c:重启iPhone在联接xcode,就可以了

13、iOS真机调试中出现identity(The identity "iPhone Developer)证书不匹配的问题提示(null) error: could not read CFBundleIdentifier from Info.plist (null)新建一个同名工程,拷贝其plist文件,将原工程中的plist文件替换掉即可。

相关文章

  • 常见错误与警告

    部分常见警告与错误的解决方法与思路,具体问题具体分析解决。 一、常见警告如下: 1.警告:“xoxoxoxo”is...

  • 常见问题

    常见问题 目录 [常见错误和警告](file:///Users/zouweifang/Desktop/问题网页/X...

  • VUE复习笔记24(生产环境部署)

    生产环境部署 开发环境下,Vue 会提供很多警告来帮你对付常见的错误与陷阱。而在生产环境下,这些警告语句却没有用,...

  • Vue生产环境部署

      开发时,Vue 会提供很多警告来帮助解决常见的错误与陷阱。生产时,这些警告语句却没有用,反而会增加载荷量。再次...

  • Xcode常见警告和错误

    Xcode 升级后,常常遇到的遇到的警告、错误,解决方法从sdk3.2.5升级到sdk 7.1中间废弃了很多的方法...

  • python unittest.TestCase 断言方法

    1、最常见断言方法 2、T与异常、错误、警告和日志相关的断言方法 3、用于完成某种特定检查的断言方法 4、针对特定...

  • 基础:App.vue 结构解析

    这里说一 基本结构: App.vue文件 Vue 会提供很多警告来帮你对付常见的错误与陷阱。而在生产环境下,这些警...

  • 常见报错或者警告

    给大家采集一下常见报错或警告的问题,方便大家解决先来两个iOS里面经典错误 1:这个参见的警告,其实就是某个地方图...

  • 常见警告:

    1.Warning: The Copy Bundle Resources build phase contains...

  • Xcode常见报错锦囊

    此篇我将罗列出iOS开发中,Xcode编译器出现的常见错误,警告视同为错误处理。(序号只做排序用) 1.死存储问题...

网友评论

      本文标题:常见错误与警告

      本文链接:https://www.haomeiwen.com/subject/wzfjmttx.html