我使用以下代码实例化一个游乐场实时视图:
import UIKit
import PlaygroundSupport
let view = UIView()
view.frame = CGRect(x: 0, y: 0, width: 100, height: 100)
view.backgroundColor = .white
PlaygroundPage.current.liveView = view
出现的实时视图粘贴在屏幕顶部,我无法通过更改框架的x和y值来更改其位置。如何让视图在我的屏幕上移动/居中?
如何出来的照片: