vote up 0 vote down star

I am displaying different content depending on how the user is holding his/her phone using the onorientationchange call in the body tag. This works great - I hide one div while making the other visible.

The div in portrait mode looks great on first load. I use this to get the right scale/zoom:

<meta name="viewport" content="width=device-width; initial-scale=1.0; maximum-scale=1.0;" />

Even if the content in portrait mode run over, the width is correct and the user can scroll down. The display in landscape mode is perfect too. However, if content in landscape mode requires the user the scroll down, then when the user returns to portrait mode, the screen is "zoomed out" so to speak. This happens whether or not the user scrolled down while in landscape mode.

I've tried many different things to try to get the scale/zoom/width of the screen right, but no luck. Is there any way to do this?

Thanks in advance!

flag

1 Answer

vote up 0 vote down

This wont work if you are running a web-app in safari, but I think it will work if you are using a UIWebView inside your own app.

I havent tested this, but there is an easy way to get your javascript to talk to the objective-c side of the code at which point you would have access to things like the zoom of the web view.

link|flag
what will work if you're using a UIWebView? Did I miss something? Can you zoom a UIWebView from cocoa? – 3n Sep 17 at 1:35
I guess I misread the question. What I describe is a solution if the app is using an "internal safari" or a UIWebview. – coneybeare Sep 17 at 3:07
Coneybeare, this is a web app, and I think you are right. After many, many hours of experimentation, I can't get it to work. It seems like something Safari on an iPhone should be able to support. Oh well. Maybe someday... – dwarbi Sep 23 at 2:58

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.