旋转时表格单元格不占据表格的整个宽度

发布于 2024-09-07 21:10:20 字数 115 浏览 1 评论 0原文

当应用程序首次加载时,表格和单元格是正确的。当您旋转到横向模式时,表格单元格看起来仍然设置为纵向模式。当您旋转回纵向时,表格单元格将设置为横向模式。

有没有办法在代码中管理这个?

谢谢

When the app first loads the table and cells are correct. When you rotate to landscape mode the table cells look like they are still set up for portrait mode. When you rotate back to portrait the table cells are set up for landscape mode.

Is there any way to manage this in the code?

Thanks

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

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

发布评论

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

评论(1

九命猫 2024-09-14 21:10:20

看起来我一直在寻找答案,当我崩溃时,我会问一个问题,然后 5 分钟。后来我找到了答案。

好吧,就到这里吧。
希望这对某人有帮助。


-(void)didRotateFromInterfaceOrientation:(UIInterfaceOrientation)fromInterfaceOrientation{
    [self.tableView reloadData];
}

Looks like I spend for ever looking for an answer and when I break down I ask a question, then 5 min. later I find the answer.

Well here you go.
Hope this helps out someone.


-(void)didRotateFromInterfaceOrientation:(UIInterfaceOrientation)fromInterfaceOrientation{
    [self.tableView reloadData];
}

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