情况一:【全屏】
宽度 = UIScreen.main.bounds.width
高度 = UIScreen.main.bounds.height
情况二:【非全屏】【iPad的分屏、侧拉模式】
let window = UIApplication.shared.windows.first(where: { $0.isKeyWindow })
宽度 = window.bounds.size.width
高度 = window.bounds.size.height
情况一:【全屏】
宽度 = UIScreen.main.bounds.width
高度 = UIScreen.main.bounds.height
情况二:【非全屏】【iPad的分屏、侧拉模式】
let window = UIApplication.shared.windows.first(where: { $0.isKeyWindow })
宽度 = window.bounds.size.width
高度 = window.bounds.size.height
本文标题:Swift 获取App显示的尺寸
本文链接:https://www.haomeiwen.com/subject/kluhsdtx.html
网友评论