应用程序在分发模式而不是调试模式下崩溃
我面临一个问题,我试图在这里解释一下。 (我不知道我能否解释)。
我制作了一个 iPhone 应用程序,其基本 sdk 版本为当前,目标操作系统设备为 3.0,该应用程序运行良好,直到我尝试为 iPhone 5.0 构建。
现在,当我为 iPhone 5.0 进行构建时,构建在调试模式下运行良好,但在分发模式下崩溃。我正在使用 SOAP 在应用程序中使用一些 Web 服务。使用网络服务进行身份验证的第一步在两种模式下都工作正常,但我无法在分发模式下进一步进行。此外,我感到非常无助,因为我无法找到产生问题的正确位置。
我知道问这个问题很奇怪,但我仍然希望有人会面临类似的挑战并能够克服它。所以知识渊博的人也会启发我。
I am facing an issue for which I am giving a try a to explain here. (I don't know I will be able to explain).
I made an iPhone application having the base sdk version current and target OS devices as 3.0 the application was running well until I tried to build for iPhone 5.0.
Now when I am making the build for iPhone 5.0 the build is running fine in debug mode but its crashing in Distribution mode. I am consuming some webservice in the application using SOAP. The first step of authentication using the webservices is working fine in both mode but I am not able to move further in distribution mode. Moreover I feel very helpless as I am not able to find the right place from where the issue is being generated.
I know that's a weird thing to ask but still I am hopeful that somebody would have faced a similar challenge and would have overcome it. So the knowledge-full would enlighten me too.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
试试这些
iPhone Codesign 对象文件格式无效或不合适
http://www.iphonedevsdk.com/论坛/iphone-sdk-development/5429-codesign-verification-nightmare.html
Try these
iPhone Codesign object file format invalid or unsuitable
http://www.iphonedevsdk.com/forum/iphone-sdk-development/5429-codesign-verification-nightmare.html
什么是“分销模式”?您的意思是“发布”配置吗?你有哪一个? LLVM 3.0?你的项目启用了 ARC 吗?...
(无论如何,我要做的第一件事就是将 -Os Fastest, Smallest optimization 替换为无优化。尝试运行。)
What is "Distribution mode"? Do you mean "Release" configuration? Which one you have? llvm 3.0? Is your project ARC-enabled?...
(Anyhow, first thing I would do is replacing -Os Fastest, Smallest optimization with no optimization. Try to run.)