我爲Deployment target> = 7.1創建應用程序。我看到「bug」... 應用程序只在橫向模式下運行!iOS7和iOS8返回的不同UIScreen界限
代碼:
CGSize frameSize = [[UIScreen mainScreen] bounds].size;
在iOS系統7(iPhone 4),返回CGSize (width=320, height=480)
,但必須返回480x320
(因爲在橫向模式下運行應用程序)。 在iOS 8(iPhone 4S)中,返回CGSize (width=480, height=320)
- 正確的結果。
iOS 7返回幀時沒有選中橫向/縱向模式,並返回縱向模式的大小。
謝謝。
謝謝,不知道 – ZhukV 2014-12-13 14:11:06