私は iOS6 にアップデートしました。これにより、PhoneGap バージョン 2.1.0 にアップデートしようとしています。(カメラなどはこれより前のバージョンでは動作しないようです-現在、この部分は動作しています)ただし、次のコード行を実行してファイルシステムにアクセスしようとすると:
window.requestFileSystem(LocalFileSystem.PERSISTENT, 0, success, fail);
アプリはクラッシュするだけで、エラーなどはありません。この行をメイン ページに配置し、シミュレーター内から開始すると、次のエラーが表示されます。
2012-09-25 11:26:38.741 MobileManager[4866:15b03] Multi-tasking -> Device: YES, App: YES
2012-09-25 11:26:59.756 MobileManager[4866:17f03] void SendDelegateMessage(NSInvocation *): delegate (webView:runJavaScriptAlertPanelWithMessage:initiatedByFrame:) failed to return after waiting 10 seconds. main run loop mode: kCFRunLoopDefaultMode
2012-09-25 11:26:59.766 MobileManager[4866:15b03] -[NSNull intValue]: unrecognized selector sent to instance 0x275678
2012-09-25 11:26:59.767 MobileManager[4866:15b03] *** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '-[NSNull intValue]: unrecognized selector sent to instance 0x275678'
*** First throw call stack:
(0x144012 0x257de7e 0x1cf4bd 0x133bbc 0x13394e 0xd953 0x60812 0x5ff9e 0x60379 0x25916b0 0x1119035 0xc7f3f 0xc796f 0xea734 0xe9f44 0xe9e1b 0x33ae7e3 0x33ae668 0x37f65c 0x22b6 0x21e5)
libc++abi.dylib: terminate called throwing an exception
このエラーの意味と解決方法を教えてください。
前もって感謝します。