大家好我正在使用eclipse上的phonegap处理位置跟踪应用程序。我已经使用AdobePhonegap Build使其可用于ios和windows。我的应用程序在Android中工作正常但是在检查网络状态时卡在ios中。我的应用程序停留在以下代码行。感谢任何帮助。
function checkInternetConnection() {
var networkState = navigator.connection.type;
if(networkState=="none")
{
myBoolean="false";
return myBoolean;
}else{
myBoolean="true";
return myBoolean;
}
}