views:

842

answers:

1

Hi,

i want to store the current scroll position of a webView and when i launch the application again . i want to restore that scroll position again ..

How to do that ???

+4  A: 

UIWebView is not a subclass of UIScrollView so you can't do it the "normal" way.

Looks like this javascript solution will do what you need: http://shortdivision.wordpress.com/2008/10/14/going-back-to-the-last-place-you-were-in-a-uiwebview/

sbwoodside