Jim
06/11/2021, 6:04 PMUIScreen.mainScreen.bounds.size
bounds
should be a CGRect
and size
should be a CGSize
, but size
is an Int
. This seems like a bug. Any other ways to get the screen size?mkrussel
06/11/2021, 6:25 PMCValue
and the size
property is the number of bytes in the value. Need to use useContents
to get to the actual CGRect
object.Jim
06/16/2021, 2:39 PM