2011-03-25 85 views

回答

44

要獲得設備的屏幕尺寸,請致電UIScreen.MainScreen.Bounds。它返回一個RectangleF的屏幕尺寸。

7

爲了得到寬使用,

UIScreen.MainScreen.Bounds.Width 

要得到高度利用,

UIScreen.MainScreen.Bounds.Height 
0

您使用UIScreen.MainScreen.Bounds得到尺寸的畫面。 它返回屏幕的點值,而不是像素大小。

UIScreen.MainScreen.Scale對於非視網膜顯示器,每點返回1.0像素,視網膜顯示器每點返回2.0像素。

UIScreen.MainScreen.Bounds.Size.Width * UIScreen.MainScreen.Scale將獲得以像素爲單位的寬度。