如何呈现 UIScrollView Modaly

发布于 2024-08-17 07:24:09 字数 61 浏览 3 评论 0原文

我想呈现一个模式视图,其中 UIscrollView 作为视图的内容。我该怎么做?

I want to present a modal view with a UIscrollView as the content of the view. How would I do this?

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

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

发布评论

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

评论(2

穿越时光隧道 2024-08-24 07:24:09

与往常一样,创建一个 viewController 并将其视图设置为滚动视图(在加载视图中)

self.view = aScrollView;

并以模态方式呈现它:(在您的第一个 viewController 中)

[self presentModalViewController:theViewController animated:YES];

As always, do a viewController and set it's view as the scroll view (in load view)

self.view = aScrollView;

and present it modally : (in your first viewController)

[self presentModalViewController:theViewController animated:YES];
初见你 2024-08-24 07:24:09

创建一个标准的 UIViewController,并为其指定一个 UIScrollView 作为其视图成员。然后在当前(可见)视图控制器上使用 -[UIViewController PresentModalViewController:animated:] 。这将(默认情况下)将新的从底部滑入。

Create a standard UIViewController, and give it a UIScrollView as its view member. Then use -[UIViewController presentModalViewController:animated:] on your current (visible) view controller. This will (by default) slide the new one in from the bottom.

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