所有屏幕上都会显示Playground的最大尺寸?

时间:2017-03-16 04:53:53

标签: swift xcode swift-playground

不同计算机上游乐场的最大宽度不同。在其中一台计算机(27英寸iMac)上可以看到整个实时视图,但有些实时视图在较小的计算机上被剪切掉。

import UIKit  
import PlaygroundSupport  
let view = UIView(frame: CGRect(x: 0.0, y: 0.0, width: 1560.0, height: 900.0))  
view.backgroundColor = UIColor.red  
PlaygroundPage.current.liveView = view  
let newview = UIView(frame: CGRect(x: 1360, y: 0.0, width: 200, height: 200))  
newview.backgroundColor = UIColor.blue  
view.addSubview(newview)  

这是一个例子。在我的iMac上,我可以在实时视图的左上方看到一个蓝色方块,但是在我的15英寸Macbook Pro上我看不到它,并且没有办法滚动所以蓝色方块完全被切除了方。

0 个答案:

没有答案