UIScrollview 是否需要位于视图上?
在故事板中,这是添加滚动视图的正确方法吗?
拖动视图控制器(带有视图) 在其上拖动 uiscrollview
或
拖动视图控制器 删除其中常规的uiview 和直接拖拽一个uiscrollview到控制器上
会有什么区别?
In storyboard, is this the correct way to add a scrollview?
drag a view controller (comes with a view)
drag a uiscrollview on it
or
drag a view contorller
remove the regular uiview in it
and drag a uiscrollview directly on the controller
What would be the difference ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
区别很简单。每个 UIViewController 都有一个根视图(它控制的视图)。
要么将 UIScrollView 放入根视图。或者您将根视图设为 UIScrollView 的实例。
The difference is simple. Every UIViewController has one root view (the view it controls).
Either you put your UIScrollView to the root view. Or you make the root view to be an instance of UIScrollView.