An iOS 6 iPad app shows content in two UIWebViews. If both web views contain a jquery image rotator, only one will work at a time. Running < iOS 6, both work properly.
If the content of the non-animating webview is reloaded, it begins to work, and the other stops. Also, in the simulator ONLY, I can sometimes cause the stopped web view to start (and the other to stop) by clicking/dragging in it.
If one of the web views does NOT have javascript in it, the reloading of the stopped web view does not stop the functioning of the other.
My first thought was this was a focus issue, but the last bit seems to disprove that, and point so some kind of pollution between the two web views. The two rotators have the same selectors and same js scripts, but the js files are cached locally and are renamed uniquely to eliminate any stepping-on during the caching process.
I can't find anything in the iOS 6 release notes to describe a change in focus between different UIWebViews.
The web views are in an XIB, but but not siblings of the same parent UIView.
The desired behavior is to have neither of the web views go to sleep, obviously.