如何在 UIScrollview 内触发 UIViewcontroller 视图的旋转事件

发布于 2024-10-11 16:26:59 字数 199 浏览 2 评论 0原文

我有 1 UIViewController 与 UIScrollView 作为视图。 对于这个滚动视图的每一页,我分配 1 个 UIViewControllers 并将他的视图添加到这个滚动视图中。

当我要旋转设备时,子视图控制器(在滚动视图中具有视图的控制器)中的旋转事件不会触发......

任何人都可以帮助我吗?谢谢:)

塞尔吉奥

I have 1 UIViewController with a UIScrollView as view.
For each page of this scrollview I alloc 1 UIViewControllers and I add his view inside this Scrollview.

When I am going to rotate the device, rotation event in the sub viewcontrollers (that ones that have their views inside the scrollview) doesn't fire...

can anyone help me? thanks :)

Sergio

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

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

发布评论

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

评论(1

栀梦 2024-10-18 16:26:59

在您的主 ViewController 方法 -(BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation

调用

[yourSubViewController shouldAutorotateToInterfaceOrientation:interfaceOrientation];

In your main ViewController method -(BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation

Call

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