当前位置 : 主页 > 手机开发 > 其它 >

swift – 没有autolayout的XCODE 8中UIScrollView的奇怪行为

来源:互联网 收集:自由互联 发布时间:2021-06-11
我只是将我的 xcode从7.3更新为8,并面临所有UISrollviews的一些奇怪行为.虽然在scrollview内部的设备子视图中进行测试与屏幕中心对齐,但在故事板中它排列得非常好.我没有得到任何关于这种
我只是将我的 xcode从7.3更新为8,并面临所有UISrollviews的一些奇怪行为.虽然在scrollview内部的设备子视图中进行测试与屏幕中心对齐,但在故事板中它排列得非常好.我没有得到任何关于这种意外行为的线索.请帮忙 .. 您必须在带有命名(scrollContainerVw)的滚动视图中添加一个子视图并设置以下引脚:
enter image description here
enter image description here
滚动视图和子视图.

如果你想支持多个屏幕请在视图中添加以下代码:

self.scrollVw.frame.size.width = self.view.frame.size.width
    self.scrollVw.frame.size.height = self.view.frame.size.height
    self.scrollContainerVw.frame.size.width = self.view.frame.size.width
    self.scrollContainerVw.frame.size.height = self.view.frame.size.height
网友评论