1.ERROR:The Document “” requires Xcode 8.0 or later.
This version does not support documents saved in the Xcode 8 format. Open this document with Xcode 8.0 or later.
�EXPLAIN:
此版本不支持Xcode8保存格式的文档,使用Xcode8或者更新的版本打开这文档。
�SOLVE:
方法一、使用Xcode8或者更新的版本。
方法二、将此文档Open as source Code,删除
<capability name="documents saved in Xcode 8 format" minToolsVersion="8.0"/>
即可。
2.Warning: Multiple build commands for output file......
重复导入了文件
解决办法:
3.The operation couldn’t be completed. (FBSOpenApplicationErrorDomain error 3.)
EXPLAIN:
当run项目时,操作不能完成。
solve:
莫须有的问题,重启或重置模拟器。
4、Warning:[Graphics] UIColor created with component values far outside the expected range. Set a breakpoint on UIColorBreakForOutOfRangeColorComponents to debug. This message will only be logged once.::
今天升级了Xcode8.1然后运行之前的项目,报出如上的警告
explain:
创建UIColor的时候给的参数溢出,RGB值的范围是[0,1],如果给定一个超出这个值的参数,就会发出这个警告,
solve:
可能项目中有很多处都出现了溢出,而且找到这个具体位置可能比较复杂,可以通过设置symblic breakpoint的方式找出,具体步骤:
1.创建断点:
2。添加symblic 值:UIColorBreakForOutOfRangeColorComponents
3、运行应用,通过call stack找到出问题的代码
然后修改值的范围在0-1就可以了。
5.真机调试出现错误:APP installation failed ,The maximum number of apps for free development profiles has been reached.
原因是:苹果免费App ID只能运行2个应用程序,当调试第三个的时候就会报这个错误,必须把之前的应用程序删除,才能调试新的。
解决办法:
Xcode->Window->Devices
删除至两个以下。重新运行,没有任何问题。