Ad hoc VS Build 应用程序行为

发布于 2024-12-27 09:49:17 字数 286 浏览 1 评论 0原文

我开发了一个简单的应用程序,其中包含一个显示数据的 UITableView,当您单击一行时,它会显示一个详细信息页面。

如果我编译我的应用程序并将其放在我的 iPhone 3G 上,它会按预期完美运行。当我创建临时应用程序时会出现问题。当安装在我的同一个 iPhone 3G 上时,我的详细页面中到处都出现图形故障。我真的不知道从哪里开始寻找来理解这一点。

有人遇到过这个问题吗? 谢谢。

  • 编辑*

精确,我正在使用 XCode 4.2(Apple LLVM 编译器)

I have developed a simple app that contains a UITableView that displays data, and when you click on a row, it displays an details page.

If I compile my apps and put it on my iPhone 3G, it works perfectly as expected. The problem occurs when I create an ad hoc of my apps. When installed on my same iPhone 3G, graphical glitches occur everywhere in my detailled page. I really don't know where to start looking to understand this.

Anyone ever had this problem?
Thanks.

  • EDIT *

A precision, I'm using XCode 4.2 (Apple LLVM Compiler)

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

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

发布评论

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

评论(1

想你的星星会说话 2025-01-03 09:49:17

尝试关闭编译器优化。

编译发布版本时,旧版 iOS 3.x 和 4.x ARMv6 设备上的 UI 出现问题。我不知道为什么,但关闭编译器优化会有帮助。

关闭 Thumb 也可能会帮助您解决此问题,您可以转到构建设置并将鼠标悬停在“其他 C 标志”选项上。单击此选项右侧出现的小加号按钮,然后添加 ARMv6 架构的条件。再次执行此操作,为 ARMv7 架构创建一个。在ARMv6架构下,添加额外的编译器标志-mno-thumb

针对 ARMv6 关闭拇指

Try to turn off compiler optimizations.

Something is going wrong with UI on old iOS 3.x and 4.x ARMv6 devices when compiling a release build. I have no idea why, but turning off compiler optimizations will help.

Turning off Thumb may also help you with this issue, you can go to your build settings and mouse over the "Other C Flags" option. Click on the little plus button that appears to the right of this option and add a condition for the ARMv6 architecture. Do this again to create one for the ARMv7 architecture. Under the ARMv6 architecture, add the extra compiler flag of -mno-thumb.

Thumb turned off for ARMv6

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