将 Instruments 连接到我的 iPod (touch) 设备时出现问题
我在将仪器连接到 iPod touch 设备上的应用程序时遇到一些问题。虽然可以在模拟器中进行调试,但在尝试启动应用程序时,我在仪器中收到此错误:
目标运行失败:远程异常 遇到:“选择器” processIdentifierForBundleIdentifier:' 未获得类型授权 'DTSpringBoardProcessControlService'
提前致谢
I'm having a bit of trouble connecting intstruments to my App on a iPod touch device. Whilst debugging in the Simulator is possible, I get this error in instruments when trying to start a app:
Target failed to run: Remote exception
encountered : 'Selector'
processIdentifierForBundleIdentifier:'
not authorized for type
'DTSpringBoardProcessControlService"
Thanks in advance
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我也有同样的问题。当前的修复是将 XCode 3.2.2 安装在不同的目录中,并使用新目录中的 Instruments.app。
没有太多修复,但 XCode 3.2.3 仍处于测试阶段,因此预计会出现问题。
I had this same problem. The current fix is to install XCode 3.2.2 in a different directory and use the Instruments.app in new directory.
Not much of a fix, but XCode 3.2.3 is still beta, so problems are expected.
问题是当分析不是正确的版本时,您部署到设备的版本。通过在 xcode 中编辑方案并将“发布”更改为“调试”,您将获得允许仪器工作所需的调试符号。
The problem is the build you are deploying to your device when profiling is not the correct build. By editing the scheme in xcode and changing "Release" to "Debug" you will get the debugging symbols you need to allow instruments to work.