标签: swift uiview
我只有一个视图添加到Storyboard。
此视图有自己的自定义类 - GameView.swift 我把这个视图作为插座连接起来,并在didSet中打印出来:
print("\(gameview.bounds.size.width) subview width") print("\(view.bounds.size.width) superview width")
结果:
600.0 subview width 320.0 superview width
为什么会这样?