记录项目中出现的错误提示,持续更新

Xcode每天都报错,是家常便饭,很多时候,自己是一错再错,为了避免连续犯错,特意记录下来。很多看控制台提示,或者不能真机这种太明显的,我就不写了。

1.File not found

应该是最常见的,文件明明在里面,但就是引用不到,引用的时候一直出现“file not found”

解决方案:
重新导入该文件,注意要选择“create groups”,这样就ok了

2.Could not find Developer Disk Image

这种是和我一样打死不升级的人,老是出现的错误。其实的意思就是手机系统版本太高的,xcode也赶紧升级吧(电脑升级吧/买新电脑)。

解决方案:
去把copy别人xcode目录下/Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/DeviceSupport最新的sdk,当然自己下载也可以。copy进去以后,重启一下xcode就好了。

3.ld: warning: directory not found for option 警告

这种是真的烦,虽然没什么影响。通常是由于添加了第三方SDK,但是后来改了个名字或者去掉了SDK。

解决方案:
Build Settings----->Search Paths----->Library Search Paths 中仍然没有删除掉对应的路径,所以需要到Library Search Paths和Framework Search Paths中删除掉警告的路径,就OK了。

4.找不到设配,不能选target,只能选My Mac

这个就是你的代码在不同的机器上运行,产生了缓存。把缓存删掉就好了。

解决方案:
右键你的project->show in finder->右键project然后显示包内容->删除xcuserdata文件夹,重新打开项目就好了。

5.Please verify that your device’s clock is properly set, and that your signing certificate is not exp

解决方案:
系统偏好设置-》钥匙串访问-》登录-》删除相应的账号证书。然后回项目 重新fix 选择 reset.会自动帮你获取证书

6.error: input is not a PCH file: '/Users/yunfeng/Downloads/appfanlishop/ShopPrefix.pch'

fatal error: '/Users/yunfeng/Downloads/appfanlishop/ShopPrefix.pch' does not appear to be a precompiled header file

2 errors generated.怎么都找不到我的pch

7.

The dependency ReactiveCocoa (= 2.5) is not used in any concrete target.
The dependency BlocksKit (~> 2.2.5) is not used in any concrete target.

解决方案:
在podfile在添加 指定target 就ok了

target "RWTFlickrSearch" do
pod 'YYKit', '~> 1.0.1'
end

8.

Referenced from: /var/mobile/Containers/Bundle/Application/DC53BB0F-75C3-4B61-BC54-BEEA81819F4E/xx.app/xx
Reason: no suitable image found. Did find:
这种问题真是莫名其妙,只有在真机上才会出现。我删除pods 文件夹 重新pod update一次就好了

先到这,持续更新

你可能感兴趣的:(记录项目中出现的错误提示,持续更新)