iPad IOS 5.0.1 中的应用程序崩溃

发布于 2025-01-05 05:05:33 字数 173 浏览 6 评论 0原文

我有一个具有 Three20 框架的应用程序。它在iPad IOS 5.0和iOS4.3中完美运行。然而,我们的客户表示,应用程序在登录应用程序本身时崩溃。因为登录后有一个 Three20 框架。我不确定问题出在哪里。请指导我。有什么方法可以使用模拟器测试 IOS 5.0.1 的应用程序吗?

非常感谢任何帮助...

I have an application which has Three20 framework. It is working perfectly in iPad IOS 5.0 and iOS4.3. However, our customers says that the app crashes while logging in to the application itself. Because after login it has a three20 framework. I am not sure where the problem exists. Please guide me. Is there any way I can test the app for IOS 5.0.1 with the simulator?

Any help is greatly appreciated...

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

请你别敷衍 2025-01-12 05:05:33

您应该安装一个崩溃处理程序。我们使用 BugSense(免费):http://bugsense.com
确保遵循他们的指南,作为回报,您将从每台崩溃的设备上获得详细的崩溃报告,并附有崩溃的具体地址。

存档文件就位后,您应该运行 atos 命令将该地址解析为行号,如下所示:
cd 到 [ArchiveName].xcarchive/Products/Applications
然后运行
atos -o [appname].app/[appname] -arch armv7 [address]

它将解析为应该帮助您开始的行号。

如果您要向客户发送临时版本,我建议您使用 Testflight SDK http://testflightapp.com 。它还安装了一个崩溃处理程序+它允许您上传符号文件(.dsym)并且它们会为您进行解析。

You should install a crash handler. We use BugSense (free): http://bugsense.com
Make sure you follow their guidelines, in return you will get a detailed crash report from every device that crashed with the specific address of the crash.

With the archive file in place you should run the atos command to resolve that address to a line number like this:
cd into [ArchiveName].xcarchive/Products/Applications
and then run
atos -o [appname].app/[appname] -arch armv7 [address]

it will resolve to the line number which should get you started.

if you are sending an adhoc build to customers I suggest you use the Testflight SDK http://testflightapp.com . it also installs a crash handler + it allows you to upload the symbol files (.dsym) and they do the resolve for you.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文