带有分页和新视图控制器的 UIScrollView

发布于 2024-09-07 11:15:36 字数 429 浏览 8 评论 0原文

我目前有一个应用程序,它有一个 UIScrollView,以分页作为主要 ViewController。然而,目前,我正在尝试为新的 ViewController 制作动画,但每当我使用 PresentModalViewController 或使用 UIView 的动画时,我仍然可以在原始视图上向左和向右滚动。

我成功地通过将其添加到窗口来阻止它滚动:

UIWindow *window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]];
    [window addSubview:NEWVIEW.view];
    [window makeKeyAndVisible];

但是,在使用此代码后,我不确定如何返回到原始的滚动视图。

感谢您提供的任何帮助。

I currently have an app that has a UIScrollView with paging as the primary ViewController. However, currently, I am trying to animate to a new ViewController, but whenever I use presentModalViewController or an animation using UIView, I am still able to scroll, left and right on the original view.

I was successfully able to keep it from scrolling by adding it to the window:

UIWindow *window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]];
    [window addSubview:NEWVIEW.view];
    [window makeKeyAndVisible];

However, after using this code, I was uncertain of how to return to the original scrollView.

Thank You for any help you can provide.

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

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

发布评论

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

评论(1

ˇ宁静的妩媚 2024-09-14 11:15:36

解决方案:
我通过将所有视图控制器放入一个 xib 文件中解决了这个问题。我将所有设置为 IBOutlets,然后 modalViewController 工作得很好。

Solution:
I fixed this problem by putting all of my viewcontrollers into one xib file. I set then all up as IBOutlets and then modalViewController worked just fine.

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