在Objective-C中,我们可以通过使用下面的代码获得设备宽度和高度:
CGRect sizeRect = [UIScreen mainScreen].applicationFrame float width = sizeRect.size.width float height = sizeRect.size.height
如何做到这一点与Swift?
我没有尝试,但应该是..
原文链接:https://www.f2er.com/swift/321236.htmlvar bounds = UIScreen.mainScreen().bounds var width = bounds.size.width var height = bounds.size.height