美文网首页
Xcode 提示、报错系列

Xcode 提示、报错系列

作者: 顾泠轩 | 来源:发表于2016-09-23 15:24 被阅读35次

    1. Could not find Developer Disk Image

    真机调试,没用当前版本镜像

    真机调试报错,真机当前iOS版本Xcode没有。(解释来自网络)

    实际情景:用Xcode 7.2 跑 iOS9.3版本的机器,导致报错。

    解决办法:添加所需版本镜像文件。

    2.The document “ShareCell.xib” 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.

    Xcode7.2运行8.0的xib报错

    使用Xcode7.2运行Xcode8.0生成的xib文件,提示当前版本不支持,需要升级到8.0以后的版本。

    解决办法1:升级Xcode到8.0;

    解决方法2:不想升级的话,就找到xib文件,显示源码(右键xib文件,Open as -> Source code),在源码中找到并删除以下代码(代码在源码偏上的部分):

    <capability name="documents saved in the Xcode 8 format" minToolsVersion="8.0/>"

    相关文章

      网友评论

          本文标题:Xcode 提示、报错系列

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