iOS 7.1 真机调试 failed to get the task for process 7518

注:从我的CSDN博客转入
failed to get the task for process 7518
这一次碰到的问题是这样的:模拟器上运行正常。我在iPhone 6上运行,程序编译正常,但是跑起来之后,大概一两秒的时间,就闪退(代码是没有问题的)。这个时候,Xcode 7.1 弹出这样的提示:


iOS 7.1 真机调试 failed to get the task for process 7518_第1张图片

错误分析

我看了一下Build Settings里的Code Signing配置,发现Provisioning Profile选择的是XC Ad Hoc: *。

Ad Hoc是用来实现发布前的用户测试的,也就是通过Ad Hoc将未发布的App给其他人提前使用。显然这是不对的,我们是要真机调试。
解决方案
解决方法很简单,将Provisioning Profile换成用开发证书创建的Provisioning Profile即可。

你可能感兴趣的:(iOS 7.1 真机调试 failed to get the task for process 7518)