了解UIScrollView中的子视图框架

时间:2017-09-11 23:39:43

标签: ios swift uiscrollview uikit

我有以下代码,我正在尝试动态地将子视图添加到UIScrollView ..但是,结果不是我所期望的。这是:

let red = UIView(frame: CGRect(x: 0, y: 0, width: 20, height: 20))
red.backgroundColor = UIColor.red
let blue = UIScrollView(frame: CGRect(x: 0, y: 100, width: UIScreen.main.bounds.width, height: 200))
blue.backgroundColor = UIColor.blue
blue.addSubview(red)
view.addSubview(blue)

enter image description here

为什么地球上的红色方块不像我预期的那样位于滚动视图的左上角......?我怎样才能实现呢?

0 个答案:

没有答案