应用程序无法在设备上运行!
我目前正在开发的应用程序在模拟器上完美运行。
但是,插入 iPod touch 并单击“运行”不会在设备上运行它。
没有错误消息或任何东西 - 它构建项目,然后说“完成运行......”。设备上没有任何反应。
如果有帮助,我正在使用 Core Plot 图表库,其他项目似乎可以在设备上正确构建和运行。奇怪的是没有错误。
有什么想法吗?
谢谢。
The app I'm currently developing works perfectly on the simulator.
However, plugging in an ipod touch and clicking "run" won't run it on device.
There are no error messages or anything - it builds the project, and then says "finished running ...". Nothing comes up on the device.
If it helps, I'm using the Core Plot charting library, other projects seem to build and run on device properly. Its just odd there are no errors.
Any ideas?
Thank you.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
您是否尝试执行清理和构建?如果它不起作用,请再次添加核心图参考并查看。
Did you try performing clean and build ? if it's not working add core plot references again and see.
有时,如果临时配置文件已过期,您会收到此错误。请验证设备和 Xcode 管理器中的临时配置文件。
Sometimes you get this error if the provisional profile is expired. Please verify the provisional profile in the device and in the xcode organizer.
它在控制台上告诉你一些事情。查看控制台。
It's telling you something on the console. Look at the console.
添加
NSLog(@"001");
和NSLog(002);
...对您的代码进行调用以检查应用停止的位置。Add
NSLog(@"001");
andNSLog(002);
... calls to your code to check where the app stops.