12
iOSでPhonegapを使用して向きの変更を正しく検出するにはどうすればよいですか?
JQTouch参照資料を探しているこのオリエンテーションテストコードを以下で見つけました。これはモバイルSafariのiOSシミュレータでは正しく機能しますが、Phonegapでは正しく処理されません。私のプロジェクトは、このテストページを強制終了するのと同じ問題に直面しています。PhonegapでJavaScriptを使用して向きの変化を感知する方法はありますか? window.onorientationchange = function() { /*window.orientation returns a value that indicates whether iPhone is in portrait mode, landscape mode with the screen turned to the left, or landscape mode with the screen turned to the right. */ var orientation = window.orientation; switch (orientation) { case 0: /* If in portrait …