我使用swift以编程方式创建了ScrollView
我在其中添加了UIView
将这两者都添加到view
后,它会在ScrollView
的顶部显示空白区域
我怎么能删除它,我在谷歌搜索,我发现了几个,我尝试了它们
self.edgesForExtendedLayout = UIRectEdge.None;
self.extendedLayoutIncludesOpaqueBars = true;
self.automaticallyAdjustsScrollViewInsets = false;
和
let insets = UIEdgeInsetsMake(self.topLayoutGuide.length, 0.0, self.bottomLayoutGuide.length, 0.0);
scrollContainer.contentInset = insets;
请建议