可能重複:
Get pitch, roll and yaw relative to geographic north on iOS?檢測iPhone
有沒有一種方法來檢測iPhone是垂直?
陀螺儀給我們相對於一個位置的絕對角度。
但我怎麼知道這個相對位置是否對應於一個垂直位置?
可能重複:
Get pitch, roll and yaw relative to geographic north on iOS?檢測iPhone
有沒有一種方法來檢測iPhone是垂直?
陀螺儀給我們相對於一個位置的絕對角度。
但我怎麼知道這個相對位置是否對應於一個垂直位置?
if (UIInterfaceOrientationIsPortrait([[UIDevice currentDevice] orientation])) {
// device is currently in portrait (vertical) orientation
}
如果你不是在尋找精確的角度信息,只是宏觀的方向,檢查[[UIDevice currentDevice] orientation]
。
請務必閱讀有關重要實施細節的類文檔。
^^這解決了我的問題http://stackoverflow.com/questions/9313474/get-pitch-roll-and-yaw-relative-to-geographic-north-on-ios – Jakikiller 2012-07-21 17:25:02
正如我在我的回答中指出的那樣,請務必閱讀有關確保獲得有效價值的信息的課程文檔。 – 2012-07-21 17:14:04
我想垂直從北 – Jakikiller 2012-07-21 17:25:36
我想製作AR應用程序。 把一些註釋建設:) – Jakikiller 2012-07-21 17:26:37