This post is half question - half announcement.. i develop iOS applications which include UIWebView that performs javascript code. When i run the app on devices with the newly iOS 7, some of the functionality doesn't work. after long debugging, i have managed to isolate the reason. Javascript AJAX has a request API with the constructor method open :
XMLHttpRequest.open(method,url,async)
'asynch' argument is false if the call should be blocking and true otherwise. the problem on iOS 7 safari only is that this method throws exception if 'async' is false.
so, hope this would help to any of you encountering the same problem, and if anyone can shad a light about this bug or way to work around it it would be great
Thanks!