如何在 tabbarcontroller 中制作视图的 uiscrollview?
我可以毫无问题地使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
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.
在视图控制器中,您需要添加以下代码来创建 ScrollView
In you view controller you will need to add the following code to create a ScrollView