0

Whenever I try to run my app on the iPhone it crashes after I press a button or tab bar. I get the following error: error: failed to launch -- failed to get the task for process 334 I tried creating a new distribution certificate but it does not work.

This all works in the simulator.


Thanks, Abdullah Shafique

4

1 回答 1

2

问题是因为您正在尝试使用分发配置文件来调试您的应用程序。如果要在调试模式下运行应用程序,则必须使用开发配置文件和证书(在构建设置和目标中)对其进行签名。如果您尝试创建可分发的,请使用分发凭据对其进行签名并添加 Entitlements.plist(同样在构建设置和目标中)。

您必须为每个目标选择开发配置文件。

进入您的目标 => 构建设置 => 代码签名 => 代码签名身份 => 为您的开发配置文件选择所有

在 Xcode 5 中,下载并添加开发人员配置文件后,首先选择您的配置文件:目标 => 构建设置 => 代码签名 => 配置文件 => 为您的开发配置文件选择全部

在此之后,您可以选择您的代码签名身份 => 为您的开发配置文件选择全部

于 2013-10-15T17:33:29.707 回答