如何在 swift 3.0 中设置滚动视图内容大小

how to set scrollview content size in swift 3.0

更新后 Xcode8 无法为 ScrollView 设置 contentSize。我无法使用 CGSizeMake。 谁能帮帮我?

我试过了

scrollView.contentSize = CGSizeMake(self.view.frame.size.width, 700)

来自 Swift 3 CGSizeMake 不可用,请改用 CGSize 初始化。

scrollView.contentSize = CGSize(width: self.view.frame.size.width, height: 700)

查看 Core Graphics 上的 Apple 文档,自 Swift 3 起,他们进行了很多更改。