热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

Xcode5没有检测到运行iOS8的iPhone-Xcode5notdetectingiPhonerunningiOS8

IhaveaniPhonewithiOS8installedonit,butwhenIconnectittoXcode5.1,itdoesntrecogniz

I have an iPhone with iOS 8 installed on it, but when I connect it to Xcode 5.1, it doesn't recognize it.

我有一个安装了iOS 8的iPhone,但当我将它连接到Xcode 5.1时,它无法识别它。

7 个解决方案

#1


2  

You need to download the Xcode 6 Beta. It's available in the iOS Developer Center, where you downloaded the iOS 8 Beta.

您需要下载Xcode 6 Beta。它可以在iOS开发人员中心下载,您可以在其中下载iOS 8 Beta。

#2


30  

As with the other answers, it seemed fairly random whether or not my iOS 8 device was being picked up by Xcode 5.1. It appears that it works if you have the iOS 8 device plugged in before you start Xcode 5.1. When you do that, you will get a screen indicating the symbols are being processed:

与其他答案一样,无论我的iOS 8设备是否被Xcode 5.1选中,似乎都是相当随机的。如果您在启动Xcode 5.1之前插入了iOS 8设备,它似乎有效。当您这样做时,您将看到一个屏幕,指示正在处理的符号:

Xcode 5.1 Screenshot

After this completes, the device is selectable. I am pretty sure this needs to be performed with each new beta. That might explain why it appears to suddenly stop working.

完成此操作后,设备可供选择。我很确定这需要在每个新测试版中执行。这可能解释了为什么它似乎突然停止工作。

If this isn't working for you, make sure you have the latest Xcode 6 Beta to match the iOS 8 Beta version, and connect the device while Xcode 6 is running. The same "Processing Symbol" files process will occur and then Xcode 5.1 seems to work.

如果这对您不起作用,请确保您拥有与iOS 8 Beta版本匹配的最新Xcode 6 Beta,并在Xcode 6运行时连接该设备。将发生相同的“处理符号”文件进程,然后Xcode 5.1似乎工作。

#3


7  

the only decent way to make it work is to create a symbolic link to a folder that contains binary for iOS8. You can make fool Xcode 5.1 saying "yes, iOS 8 is ok." via a symlink:

唯一可行的方法是创建一个包含iOS8二进制文件夹的符号链接。你可以让傻瓜Xcode 5.1说“是的,iOS 8还可以。”通过符号链接:

In my case I have Xcode 5.1 on Mavericks HD, and Xcode 6.0 beta 4 on Yosemite HD.

在我的情况下,我在Mavericks HD上有Xcode 5.1,在Yosemite HD上有Xcode 6.0 beta 4。

I did:

sudo ln -s /Applications/Xcode6-Beta4.app/Contents/Developer/Platforms/iPhoneOS.platform/DeviceSupport/8.0\ (12A4331d) /Volumes/MAVERICKS/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/DeviceSupport/8.0\ (12A4331d)

sudo ln -s /Applications/Xcode6-Beta4.app/Contents/Developer/Platforms/iPhoneOS.platform/DeviceSupport/8.0 \(12A4331d)/Volumes/MAVERICKS/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform /DeviceSupport/8.0 \(12A4331d)

and Xcode 5.1 did work with my iOS8 iphone.

和Xcode 5.1一起使用我的iOS8 iphone。

(note the space before /Volumes/MAVER... )

(注意/ Volumes / MAVER之前的空间......)

PS: for every beta, I have to patch again... :(

PS:对于每个测试版,我必须再次修补...... :(

#4


2  

I have connected my iPhone with iOS 8 installed to Xcode 5.1.First time it doesn't recognize.but when i unplugged device and connect again , Device Recognized. I dont know the reason Anyway i am sure that you can also connect your IOS8 installed device to Xcode5.1 ....

我已将安装了iOS 8的iPhone连接到Xcode 5.1。第一次无法识别。但是当我拔下设备并重新连接时,设备已识别。我不知道原因无论如何我相信你也可以将你的IOS8安装设备连接到Xcode5.1 ....

#5


1  

I've been using Xcode 5 to build on an iOS 8 device just fine. Now all of a sudden, it won't let me anymore.

我一直在使用Xcode 5来构建iOS 8设备。现在突然间,它不会再让我了。

#6


1  

first use xcode6 build on your iPhone5s. second open xcode 5 ,unpluge device and connect again. then device recognized.

首先在iPhone5s上使用xcode6 build。第二次打开xcode 5,拔出设备并再次连接。然后设备被识别。

#7


1  

Open xcode 6 and wait until device is recognised. When done, close xcode 6 and open xcode 5.1 and your device is going to be automatically recognised.

打开xcode 6并等待设备被识别。完成后,关闭xcode 6并打开xcode 5.1,您的设备将被自动识别。

That way you can run your application on a device with iOS 8 with the old xcode.

这样,您就可以在具有旧版xcode的iOS 8设备上运行您的应用程序。


推荐阅读
  • 本文探讨了如何利用HTML5和JavaScript在浏览器中进行本地文件的读取和写入操作,并介绍了获取本地文件路径的方法。HTML5提供了一系列API,使得这些操作变得更加简便和安全。 ... [详细]
  • 主调|大侠_重温C++ ... [详细]
  • 在PHP后端开发中遇到一个难题:通过第三方类文件发送短信功能返回的JSON字符串无法解析。本文将探讨可能的原因并提供解决方案。 ... [详细]
  • 在高并发需求的C++项目中,我们最初选择了JsonCpp进行JSON解析和序列化。然而,在处理大数据量时,JsonCpp频繁抛出异常,尤其是在多线程环境下问题更为突出。通过分析发现,旧版本的JsonCpp存在多线程安全性和性能瓶颈。经过评估,我们最终选择了RapidJSON作为替代方案,并实现了显著的性能提升。 ... [详细]
  • 深入解析Spring启动过程
    本文详细介绍了Spring框架的启动流程,帮助开发者理解其内部机制。通过具体示例和代码片段,解释了Bean定义、工厂类、读取器以及条件评估等关键概念,使读者能够更全面地掌握Spring的初始化过程。 ... [详细]
  • 本文将详细介绍如何在没有显示器的情况下,使用Raspberry Pi Imager为树莓派4B安装操作系统,并进行基本配置,包括设置SSH、WiFi连接以及更新软件源。 ... [详细]
  • 优化SQL Server批量数据插入存储过程的实现
    本文介绍了一种改进的SQL Server存储过程,用于生成批量插入语句。该方法不仅提高了性能,还支持单行和多行模式,适用于SQL Server 2005及以上版本。 ... [详细]
  • 在尝试从数据库获取设置的过程中,遇到了一个致命错误:Fatal error: Call to a member function bind_param() on boolean。本文将详细分析该错误的原因,并提供解决方案。 ... [详细]
  • java文本编辑器,java文本编辑器设计思路
    java文本编辑器,java文本编辑器设计思路 ... [详细]
  • 本文档汇总了Python编程的基础与高级面试题目,涵盖语言特性、数据结构、算法以及Web开发等多个方面,旨在帮助开发者全面掌握Python核心知识。 ... [详细]
  • 深入解析Android中的SQLite数据库使用
    本文详细介绍了如何在Android应用中使用SQLite数据库进行数据存储。通过自定义类继承SQLiteOpenHelper,实现数据库的创建与版本管理,并提供了具体的学生信息管理示例代码。 ... [详细]
  • 本文详细介绍了如何在PHP中进行数组删除、清空等操作,并提供了在Visual Studio Code中创建PHP文件的步骤。 ... [详细]
  • 云函数与数据库API实现增删查改的对比
    本文将深入探讨使用云函数和数据库API实现数据操作(增删查改)的不同方法,通过详细的代码示例帮助读者更好地理解和掌握这些技术。文章不仅提供代码实现,还解释了每种方法的特点和适用场景。 ... [详细]
  • 本文将带您了解Cocos家族的不同版本和分支,特别是Cocos Creator的发展历程及其核心特性,帮助初学者快速入门。 ... [详细]
  • 本文介绍了两种使用Java发送短信的方法:利用第三方平台的HTTP请求和通过硬件设备短信猫。重点讲解了如何通过Java代码配置和使用短信猫发送短信的过程,包括必要的编码转换、串口操作及短信发送的核心逻辑。 ... [详细]
author-avatar
1021365712_3a478e
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有