We have an app with essentially one UIWebView which is set to "iPhone App" in XCode.
Until now all worked fine, but using the iOS 7 iPad Simulator the App now appears in "Full Screen" immediately, which would not be the problem, but the WebView also appears to be zoomed in.
I only see the upper right 1/4 of the website thats loaded and have to scroll to see the rest.
We use jQuery mobile 1.3.1 in the application.
edit
I found the error. It seems the semantics of the viewport meta-element changed between iOS versions.
Changing
<meta name="viewport" content="width=device-width, initial-scale=1">
to
<meta name="viewport" content="initial-scale=1">
worked for me, but I am unsure if this is the way to go since the jQuery Mobile Demo Page does set the with to the device-with. When I load the Demo-Page from my UIWebView I get the same effect.
Is there any information on "the right way" to set the viewport, especially since the demo page uses width=device-width