旋转到横向 iPhone iPad 时无法触摸屏幕右侧部分

发布于 2024-12-10 08:49:47 字数 224 浏览 4 评论 0原文

我有一个支持所有方向的应用程序。然而,当我在纵向模式下启动设备后旋转设备时,我无法触摸 iPad 屏幕的右侧部分。我想这是一个框架问题(我认为我无法触摸屏幕的 1024-768px 宽度部分)此外,当我尝试将 self.view 的框架设置为 CGRectMake (0,0,1024,768) 在 didrotate 方法中,self.view 从几乎中心到右侧屏幕之外。

怎么解决这个问题呢?有什么帮助吗?谢谢。

I have an app that supports all of orientations. However when I rotate the device after it launches in portrait mode, I cannot touch to the right part of the screen of the iPad. I guess it is a framing issue (I think I cannot touch to 1024-768px width part of the screen) Also when I try to set the frame of self.view to
CGRectMake (0,0,1024,768) in didrotate method, self.view lays from almost the center to out of screen at the right.

How to solve this? Any help? Thanks.

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

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

发布评论

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

评论(2

慕巷 2024-12-17 08:49:47

self.view的frame不需要设置,它会自动设置。如果你设置了,就会出错。我以前也犯过同样的错误。

You need not to set the frame of self.view,it will be setted automatically.If you set, it will be wrong.I had the same mistake before.

少女的英雄梦 2024-12-17 08:49:47

这是因为我忘记更新我想要触摸的视图上方的视图框架。通过仔细更新所有视图的框架解决了问题。

This is because I forgot to update the frame of a view which is above the view which I would like to touch. Issue is resolved with updating all of the views' frames carefully.

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