如何在 tabbarcontroller 中制作视图的 uiscrollview?

发布于 2025-01-02 16:22:41 字数 156 浏览 0 评论 0原文

我可以毫无问题地使用 UIScrollView 制作视图,但我不明白如何使用 UIScrollView 制作 View 并将其插入一个 UITabBarController 。

我现在开始使用iOS...

I can make a view with a UIScrollView without problemas, but I can't understand how to make a View with a UIScrollView and insert it in a UITabBarController.

I'm starting with iOS now...

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

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

发布评论

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

评论(2

夏末的微笑 2025-01-09 16:22:41

UITabBarController 不直接处理子视图。 它处理子视图控制器。你需要一个视图控制器来负责你的滚动视图,并且你告诉标签栏关于视图控制器的控制器。

如果您不了解视图控制器的用途或如何制作自己的视图控制器,则需要学习一些 iOS 编程教程。

A UITabBarController doesn't deal with child views directly. It deals with child view controllers. You need a view controller to be in charge of your scroll view, and you tell the tab bar controller about the view controller.

If you don't understand what view controllers are for or how to make your own view controller, you need to work through some iOS programming tutorials.

紧拥背影 2025-01-09 16:22:41

在视图控制器中,您需要添加以下代码来创建 ScrollView

UIScrollView *srcv = [[UIScrollView alloc] initWithFrame:self.view.frame];
self.view = srcv;
//Add your elements to srcv
[srcv setContentSize:CGSizeMake(x,y)]; //Where x and y are your dimensions that will allow this to scroll

In you view controller you will need to add the following code to create a ScrollView

UIScrollView *srcv = [[UIScrollView alloc] initWithFrame:self.view.frame];
self.view = srcv;
//Add your elements to srcv
[srcv setContentSize:CGSizeMake(x,y)]; //Where x and y are your dimensions that will allow this to scroll
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文